diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/Extensions/TypeExtensionsTests.cs b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/Extensions/TypeExtensionsTests.cs index 050b5154f5d..dc5e32de741 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/Extensions/TypeExtensionsTests.cs +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/Extensions/TypeExtensionsTests.cs @@ -7,7 +7,7 @@ namespace HotChocolate.Adapters.Mcp.Extensions; public sealed class TypeExtensionsTests { [Theory] - [InlineData(typeof(ByteArrayType), "dmFsdWU=")] + [InlineData(typeof(Base64StringType), "dmFsdWU=")] // A DateTime with UTC offset (+00:00). [InlineData(typeof(DateTimeType), "2011-08-30T13:22:53.108Z")] // A DateTime with +00:00 which is the same as UTC. @@ -42,7 +42,7 @@ public void ToJsonSchemaBuilder_ValidValues_MatchPattern(Type type, string value } [Theory] - [InlineData(typeof(ByteArrayType), "invalidBase64")] + [InlineData(typeof(Base64StringType), "invalidBase64")] // The minutes of the offset are missing. [InlineData(typeof(DateTimeType), "2011-08-30T13:22:53.108-03")] // No offset provided. diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/IntegrationTestBase.cs b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/IntegrationTestBase.cs index a86e0d65460..b915a25bfaa 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/IntegrationTestBase.cs +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/IntegrationTestBase.cs @@ -653,9 +653,9 @@ await storage.AddOrUpdateToolAsync( new Dictionary { { "any", null }, + { "base64String", null }, { "boolean", null }, { "byte", null }, - { "byteArray", null }, { "date", null }, { "dateTime", null }, { "decimal", null }, @@ -705,9 +705,9 @@ await storage.AddOrUpdateToolAsync( new Dictionary { { "any", new { key = "value" } }, + { "base64String", "dGVzdA==" }, { "boolean", true }, { "byte", 1 }, - { "byteArray", "dGVzdA==" }, { "date", "2000-01-01" }, { "dateTime", "2000-01-01T12:00:00Z" }, { "decimal", 79228162514264337593543950335m }, diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/TestSchema.cs b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/TestSchema.cs index 0ff40d2c90f..f5b71c651e0 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/TestSchema.cs +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/TestSchema.cs @@ -20,9 +20,9 @@ public sealed class Query public ResultNullable GetWithNullableVariables( JsonElement? any, + [GraphQLType] byte[]? base64String, bool? boolean, sbyte? @byte, - [GraphQLType] byte[]? byteArray, [GraphQLType] DateOnly? date, DateTimeOffset? dateTime, decimal? @decimal, @@ -45,9 +45,9 @@ public ResultNullable GetWithNullableVariables( => new( any, + base64String, boolean, @byte, - byteArray, date, dateTime, @decimal, @@ -70,9 +70,9 @@ public ResultNullable GetWithNullableVariables( public ResultNonNullable GetWithNonNullableVariables( JsonElement any, + [GraphQLType>] byte[] base64String, bool boolean, sbyte @byte, - [GraphQLType>] byte[] byteArray, [GraphQLType>] DateOnly date, DateTimeOffset dateTime, decimal @decimal, @@ -95,9 +95,9 @@ public ResultNonNullable GetWithNonNullableVariables( => new( any, + base64String, boolean, @byte, - byteArray, date, dateTime, @decimal, @@ -120,9 +120,9 @@ public ResultNonNullable GetWithNonNullableVariables( public ResultDefaulted GetWithDefaultedVariables( JsonElement any, + [GraphQLType>] byte[] base64String, bool boolean, sbyte @byte, - [GraphQLType>] byte[] byteArray, [GraphQLType>] DateOnly date, DateTimeOffset dateTime, decimal @decimal, @@ -145,9 +145,9 @@ public ResultDefaulted GetWithDefaultedVariables( => new( any, + base64String, boolean, @byte, - byteArray, date, dateTime, @decimal, @@ -323,9 +323,9 @@ public sealed record ObjectWithOneOfField( public sealed record ResultNullable( JsonElement? Any, + [property: GraphQLType] byte[]? Base64String, bool? Boolean, sbyte? Byte, - [property: GraphQLType] byte[]? ByteArray, [property: GraphQLType] DateOnly? Date, DateTimeOffset? DateTime, decimal? Decimal, @@ -348,9 +348,9 @@ public sealed record ResultNullable( public sealed record ResultNonNullable( JsonElement Any, + [property: GraphQLType>] byte[] Base64String, bool Boolean, sbyte Byte, - [property: GraphQLType>] byte[] ByteArray, [property: GraphQLType>] DateOnly Date, DateTimeOffset DateTime, decimal Decimal, @@ -373,9 +373,9 @@ public sealed record ResultNonNullable( public sealed record ResultDefaulted( JsonElement Any, + [property: GraphQLType>] byte[] Base64String, bool Boolean, sbyte Byte, - [property: GraphQLType>] byte[] ByteArray, [property: GraphQLType>] DateOnly Date, DateTimeOffset DateTime, decimal Decimal, diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithDefaultedVariables.graphql b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithDefaultedVariables.graphql index b972087aeb5..fd5e829a181 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithDefaultedVariables.graphql +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithDefaultedVariables.graphql @@ -2,12 +2,12 @@ query GetWithDefaultedVariables( "Any description" $any: Any! = { key: "value" } + "Base64String description" + $base64String: Base64String! = "ZGVmYXVsdA==" "Boolean description" $boolean: Boolean! = true "Byte description" $byte: Byte! = 1 - "ByteArray description" - $byteArray: ByteArray! = "ZGVmYXVsdA==" "Date description" $date: Date! = "2000-01-01" "DateTime description" @@ -49,9 +49,9 @@ query GetWithDefaultedVariables( ) { withDefaultedVariables( any: $any + base64String: $base64String boolean: $boolean byte: $byte - byteArray: $byteArray date: $date dateTime: $dateTime decimal: $decimal @@ -73,9 +73,9 @@ query GetWithDefaultedVariables( uuid: $uuid ) { any + base64String boolean byte - byteArray date dateTime decimal diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNonNullableVariables.graphql b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNonNullableVariables.graphql index e468a95fa50..c70dc929cd1 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNonNullableVariables.graphql +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNonNullableVariables.graphql @@ -1,9 +1,9 @@ "GetWithNonNullableVariables description" query GetWithNonNullableVariables( "Any description" $any: Any! + "Base64String description" $base64String: Base64String! "Boolean description" $boolean: Boolean! "Byte description" $byte: Byte! - "ByteArray description" $byteArray: ByteArray! "Date description" $date: Date! "DateTime description" $dateTime: DateTime! "Decimal description" $decimal: Decimal! @@ -26,9 +26,9 @@ query GetWithNonNullableVariables( ) { withNonNullableVariables( any: $any + base64String: $base64String boolean: $boolean byte: $byte - byteArray: $byteArray date: $date dateTime: $dateTime decimal: $decimal @@ -50,9 +50,9 @@ query GetWithNonNullableVariables( uuid: $uuid ) { any + base64String boolean byte - byteArray date dateTime decimal diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNullableVariables.graphql b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNullableVariables.graphql index 144a6817be5..a48c7e3de6a 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNullableVariables.graphql +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__resources__/GetWithNullableVariables.graphql @@ -1,9 +1,9 @@ "GetWithNullableVariables description" query GetWithNullableVariables( "Any description" $any: Any + "Base64String description" $base64String: Base64String "Boolean description" $boolean: Boolean "Byte description" $byte: Byte - "ByteArray description" $byteArray: ByteArray "Date description" $date: Date "DateTime description" $dateTime: DateTime "Decimal description" $decimal: Decimal @@ -26,9 +26,9 @@ query GetWithNullableVariables( ) { withNullableVariables( any: $any + base64String: $base64String boolean: $boolean byte: $byte - byteArray: $byteArray date: $date dateTime: $dateTime decimal: $decimal @@ -50,9 +50,9 @@ query GetWithNullableVariables( uuid: $uuid ) { any + base64String boolean byte - byteArray date dateTime decimal diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithDefaultedVariables_ReturnsExpectedResult.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithDefaultedVariables_ReturnsExpectedResult.json index 16dfae86f31..d6a9a40dcaf 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithDefaultedVariables_ReturnsExpectedResult.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithDefaultedVariables_ReturnsExpectedResult.json @@ -4,9 +4,9 @@ "any": { "key": "value" }, + "base64String": "ZGVmYXVsdA==", "boolean": true, "byte": 1, - "byteArray": "ZGVmYXVsdA==", "date": "2000-01-01", "dateTime": "2000-01-01T12:00:00.000Z", "decimal": 79228162514264337593543950335, diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNonNullableVariables_ReturnsExpectedResult.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNonNullableVariables_ReturnsExpectedResult.json index 5a17ceb46e2..475f014ab06 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNonNullableVariables_ReturnsExpectedResult.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNonNullableVariables_ReturnsExpectedResult.json @@ -4,9 +4,9 @@ "any": { "key": "value" }, + "base64String": "dGVzdA==", "boolean": true, "byte": 1, - "byteArray": "dGVzdA==", "date": "2000-01-01", "dateTime": "2000-01-01T12:00:00.000Z", "decimal": 79228162514264337593543950335, diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNullableVariables_ReturnsExpectedResult.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNullableVariables_ReturnsExpectedResult.json index a4b42cf16c3..e604f07cbe6 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNullableVariables_ReturnsExpectedResult.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithNullableVariables_ReturnsExpectedResult.json @@ -2,9 +2,9 @@ "data": { "withNullableVariables": { "any": null, + "base64String": null, "boolean": null, "byte": null, - "byteArray": null, "date": null, "dateTime": null, "decimal": null, diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Input.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Input.json index f013d99d636..74dcf6916a5 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Input.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Input.json @@ -15,6 +15,12 @@ "key": "value" } }, + "base64String": { + "type": "string", + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", + "description": "Base64String description", + "default": "ZGVmYXVsdA==" + }, "boolean": { "type": "boolean", "description": "Boolean description", @@ -25,12 +31,6 @@ "description": "Byte description", "default": 1 }, - "byteArray": { - "type": "string", - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", - "description": "ByteArray description", - "default": "ZGVmYXVsdA==" - }, "date": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Output.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Output.json index 7f9d51b690a..5a0a979f6ec 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Output.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithDefaultedVariables_CreatesCorrectSchema_Output.json @@ -20,16 +20,16 @@ "integer" ] }, + "base64String": { + "type": "string", + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$" + }, "boolean": { "type": "boolean" }, "byte": { "type": "integer" }, - "byteArray": { - "type": "string", - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$" - }, "date": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$" @@ -140,9 +140,9 @@ }, "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Input.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Input.json index 5dc68e2734d..a42766a53e4 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Input.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Input.json @@ -12,6 +12,11 @@ ], "description": "Any description" }, + "base64String": { + "type": "string", + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", + "description": "Base64String description" + }, "boolean": { "type": "boolean", "description": "Boolean description" @@ -20,11 +25,6 @@ "type": "integer", "description": "Byte description" }, - "byteArray": { - "type": "string", - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", - "description": "ByteArray description" - }, "date": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", @@ -151,9 +151,9 @@ }, "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Output.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Output.json index f338d6c27d0..a6f17fcf74c 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Output.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNonNullableVariables_CreatesCorrectSchema_Output.json @@ -20,16 +20,16 @@ "integer" ] }, + "base64String": { + "type": "string", + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$" + }, "boolean": { "type": "boolean" }, "byte": { "type": "integer" }, - "byteArray": { - "type": "string", - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$" - }, "date": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$" @@ -140,9 +140,9 @@ }, "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Input.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Input.json index eefceec75f9..6e908cc4bcc 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Input.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Input.json @@ -13,6 +13,14 @@ ], "description": "Any description" }, + "base64String": { + "type": [ + "string", + "null" + ], + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", + "description": "Base64String description" + }, "boolean": { "type": [ "boolean", @@ -27,14 +35,6 @@ ], "description": "Byte description" }, - "byteArray": { - "type": [ - "string", - "null" - ], - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", - "description": "ByteArray description" - }, "date": { "type": [ "string", diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Output.json b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Output.json index 951a4254b74..90a7dafa54d 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Output.json +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/OperationToolFactoryTests.CreateTool_WithNullableVariables_CreatesCorrectSchema_Output.json @@ -21,6 +21,13 @@ "null" ] }, + "base64String": { + "type": [ + "string", + "null" + ], + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$" + }, "boolean": { "type": [ "boolean", @@ -33,13 +40,6 @@ "null" ] }, - "byteArray": { - "type": [ - "string", - "null" - ], - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$" - }, "date": { "type": [ "string", @@ -218,9 +218,9 @@ }, "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", diff --git a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/HttpEndpointIntegrationTestBase.cs b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/HttpEndpointIntegrationTestBase.cs index 47207e84030..572c5fe8b3b 100644 --- a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/HttpEndpointIntegrationTestBase.cs +++ b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/HttpEndpointIntegrationTestBase.cs @@ -300,9 +300,9 @@ public async Task Http_Post_Complex_Object() "any": { "key": "value" }, + "base64String": "dGVzdA==", "boolean": true, "byte": 1, - "byteArray": "dGVzdA==", "date": "2000-01-01", "dateTime": "2000-01-01T12:00:00.000Z", "decimal": 79228162514264337593543950335, diff --git a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/__snapshots__/HttpEndpointIntegrationTestBase.Http_Post_Complex_Object.snap b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/__snapshots__/HttpEndpointIntegrationTestBase.Http_Post_Complex_Object.snap index d4751b56a63..6c8f39052c9 100644 --- a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/__snapshots__/HttpEndpointIntegrationTestBase.Http_Post_Complex_Object.snap +++ b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/Endpoints/__snapshots__/HttpEndpointIntegrationTestBase.Http_Post_Complex_Object.snap @@ -3,4 +3,4 @@ Content-Type: application/json --------------------------> Status Code: OK --------------------------> -{"any":{"key":"value"},"boolean":true,"byte":1,"byteArray":"dGVzdA==","date":"2000-01-01","dateTime":"2000-01-01T12:00:00.000Z","decimal":79228162514264337593543950335,"enum":"VALUE1","float":1.5,"id":"test","int":1,"json":{"key":"value"},"list":["test"],"localDate":"2000-01-01","localDateTime":"2000-01-01T12:00:00","localTime":"12:00:00","long":9223372036854775807,"object":{"field1A":{"field1B":{"field1C":"12:00:00"}}},"short":1,"string":"test","timeSpan":"PT5M","unknown":"test","url":"https://example.com/","uuid":"00000000-0000-0000-0000-000000000000"} +{"any":{"key":"value"},"base64String":"dGVzdA==","boolean":true,"byte":1,"date":"2000-01-01","dateTime":"2000-01-01T12:00:00.000Z","decimal":79228162514264337593543950335,"enum":"VALUE1","float":1.5,"id":"test","int":1,"json":{"key":"value"},"list":["test"],"localDate":"2000-01-01","localDateTime":"2000-01-01T12:00:00","localTime":"12:00:00","long":9223372036854775807,"object":{"field1A":{"field1B":{"field1C":"12:00:00"}}},"short":1,"string":"test","timeSpan":"PT5M","unknown":"test","url":"https://example.com/","uuid":"00000000-0000-0000-0000-000000000000"} diff --git a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0.json b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0.json index e8bd6a70350..228b4e9bd65 100644 --- a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0.json +++ b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0.json @@ -19,9 +19,9 @@ "schema": { "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", @@ -67,6 +67,10 @@ } ] }, + "base64String": { + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", + "type": "string" + }, "boolean": { "type": "boolean" }, @@ -75,10 +79,6 @@ "description": "The Byte scalar type represents an 8-bit signed integer with a minimum value of -128 and a maximum value of 127.", "format": "int32" }, - "byteArray": { - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", - "type": "string" - }, "date": { "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string", @@ -237,9 +237,9 @@ "schema": { "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", @@ -285,6 +285,13 @@ } ] }, + "base64String": { + "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", + "type": [ + "null", + "string" + ] + }, "boolean": { "type": [ "null", @@ -299,13 +306,6 @@ "description": "The Byte scalar type represents an 8-bit signed integer with a minimum value of -128 and a maximum value of 127.", "format": "int32" }, - "byteArray": { - "pattern": "^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$", - "type": [ - "null", - "string" - ] - }, "date": { "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": [ diff --git a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0_Fusion.json b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0_Fusion.json index 8a7efbcfe46..efc0ff6645a 100644 --- a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0_Fusion.json +++ b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApi/__snapshots__/OpenApiIntegrationTestBase.OpenApi_Includes_Initial_Routes_NET10_0_Fusion.json @@ -19,9 +19,9 @@ "schema": { "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", @@ -48,6 +48,9 @@ "any": { "type": "string" }, + "base64String": { + "type": "string" + }, "boolean": { "type": "boolean" }, @@ -55,9 +58,6 @@ "type": "string", "description": "The Byte scalar type represents an 8-bit signed integer with a minimum value of -128 and a maximum value of 127." }, - "byteArray": { - "type": "string" - }, "date": { "type": "string", "description": "The `Date` scalar represents an ISO-8601 compliant date type." @@ -184,9 +184,9 @@ "schema": { "required": [ "any", + "base64String", "boolean", "byte", - "byteArray", "date", "dateTime", "decimal", @@ -216,6 +216,12 @@ "string" ] }, + "base64String": { + "type": [ + "null", + "string" + ] + }, "boolean": { "type": [ "null", @@ -229,12 +235,6 @@ ], "description": "The Byte scalar type represents an 8-bit signed integer with a minimum value of -128 and a maximum value of 127." }, - "byteArray": { - "type": [ - "null", - "string" - ] - }, "date": { "type": [ "null", diff --git a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApiTestBase.cs b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApiTestBase.cs index cf243857277..6c64feee7e7 100644 --- a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApiTestBase.cs +++ b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/OpenApiTestBase.cs @@ -122,9 +122,9 @@ ... on Dog { query ComplexObjectQuery($input: ComplexObjectInput! @body) @http(method: POST, route: "/complex") { complexObject(input: $input) { any + base64String boolean byte - byteArray date dateTime decimal diff --git a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/TestSchema.cs b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/TestSchema.cs index fb231a564d5..05115050c71 100644 --- a/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/TestSchema.cs +++ b/src/HotChocolate/Adapters/test/Adapters.OpenApi.Tests/TestSchema.cs @@ -62,9 +62,9 @@ public ComplexObject GetComplexObject(ComplexObjectInput input) { return new ComplexObject( input.Any, + input.Base64String, input.Boolean, input.Byte, - input.ByteArray, input.Date, input.DateTime, input.Decimal, @@ -178,9 +178,9 @@ public sealed record Object3NonNullable( public sealed record ComplexObject( [property: GraphQLType] object? Any, + [property: GraphQLType] byte[]? Base64String, bool? Boolean, sbyte? Byte, - [property: GraphQLType] byte[]? ByteArray, [property: GraphQLType] DateOnly? Date, DateTimeOffset? DateTime, decimal? Decimal, @@ -204,9 +204,9 @@ public sealed record ComplexObject( public sealed record ComplexObjectInput( [property: GraphQLType>] object Any, + [property: GraphQLType>] byte[] Base64String, bool Boolean, sbyte Byte, - [property: GraphQLType>] byte[] ByteArray, [property: GraphQLType>] DateOnly Date, DateTimeOffset DateTime, decimal Decimal, diff --git a/src/HotChocolate/Core/src/Types.Json/JsonObjectTypeExtensions.cs b/src/HotChocolate/Core/src/Types.Json/JsonObjectTypeExtensions.cs index b51a4fb8894..c7239c69d51 100644 --- a/src/HotChocolate/Core/src/Types.Json/JsonObjectTypeExtensions.cs +++ b/src/HotChocolate/Core/src/Types.Json/JsonObjectTypeExtensions.cs @@ -219,7 +219,7 @@ internal static void InferResolver( }; return; - case ScalarNames.ByteArray: + case ScalarNames.Base64String or ScalarNames.ByteArray: def.PureResolver = ctx => { var property = ctx.GetProperty(propertyName); diff --git a/src/HotChocolate/Core/src/Types/Configuration/TypeLookup.cs b/src/HotChocolate/Core/src/Types/Configuration/TypeLookup.cs index b1a95df1619..deb2438ab69 100644 --- a/src/HotChocolate/Core/src/Types/Configuration/TypeLookup.cs +++ b/src/HotChocolate/Core/src/Types/Configuration/TypeLookup.cs @@ -116,7 +116,7 @@ private bool TryNormalizeExtendedTypeReference( } // we check each component layer since there could be a binding on a list type, - // e.g. list to ByteArray. + // e.g. list to Base64String. for (var i = 0; i < typeInfo.Components.Count; i++) { var componentType = typeInfo.Components[i].Type; diff --git a/src/HotChocolate/Core/src/Types/Types/Scalars/Base64StringType.cs b/src/HotChocolate/Core/src/Types/Types/Scalars/Base64StringType.cs new file mode 100644 index 00000000000..3a773f586cb --- /dev/null +++ b/src/HotChocolate/Core/src/Types/Types/Scalars/Base64StringType.cs @@ -0,0 +1,112 @@ +using System.Buffers; +using System.Buffers.Text; +using System.Text.Json; +using HotChocolate.Buffers; +using HotChocolate.Features; +using HotChocolate.Language; +using HotChocolate.Text.Json; + +namespace HotChocolate.Types; + +/// +/// Represents a scalar type for byte arrays that are serialized as Base64-encoded strings in GraphQL. +/// This type handles the conversion between byte arrays in .NET and string representations in GraphQL schemas. +/// +public class Base64StringType : ScalarType +{ + /// + /// Initializes a new instance of the class. + /// + public Base64StringType( + string name, + string? description = null, + BindingBehavior bind = BindingBehavior.Explicit) + : base(name, bind) + { + Description = description; + Pattern = @"^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$"; + } + + /// + /// Initializes a new instance of the class. + /// + [ActivatorUtilitiesConstructor] + public Base64StringType() + : this(ScalarNames.Base64String, bind: BindingBehavior.Implicit) + { + } + + protected override byte[] OnCoerceInputLiteral(StringValueNode valueLiteral) + { + byte[]? rented = null; + var valueSpan = valueLiteral.AsSpan(); + var length = Base64.GetMaxDecodedFromUtf8Length(valueSpan.Length); + var buffer = length <= 256 ? stackalloc byte[length] : rented = ArrayPool.Shared.Rent(length); + + try + { + Base64.DecodeFromUtf8(valueSpan, buffer, out _, out var bytesWritten); + return buffer[..bytesWritten].ToArray(); + } + finally + { + if (rented is not null) + { + ArrayPool.Shared.Return(rented); + } + } + } + + protected override byte[] OnCoerceInputValue(JsonElement inputValue, IFeatureProvider context) + => inputValue.GetBytesFromBase64(); + + protected override void OnCoerceOutputValue(byte[] runtimeValue, ResultElement resultValue) + { + byte[]? rented = null; + var length = Base64.GetMaxEncodedToUtf8Length(runtimeValue.Length); + var buffer = length <= 256 ? stackalloc byte[length] : rented = ArrayPool.Shared.Rent(length); + + try + { + Base64.EncodeToUtf8( + runtimeValue, + buffer, + out _, + out var bytesWritten); + resultValue.SetStringValue(buffer[..bytesWritten]); + } + finally + { + if (rented is not null) + { + ArrayPool.Shared.Return(rented); + } + } + } + + protected override StringValueNode OnValueToLiteral(byte[] runtimeValue) + { + byte[]? rented = null; + var length = Base64.GetMaxEncodedToUtf8Length(runtimeValue.Length); + var buffer = length <= 256 ? stackalloc byte[length] : rented = ArrayPool.Shared.Rent(length); + + try + { + Base64.EncodeToUtf8( + runtimeValue, + buffer, + out _, + out var bytesWritten); + var encodedBuffer = buffer[..bytesWritten].ToArray(); + var segment = new ReadOnlyMemorySegment(encodedBuffer); + return new StringValueNode(null, segment, false); + } + finally + { + if (rented is not null) + { + ArrayPool.Shared.Return(rented); + } + } + } +} diff --git a/src/HotChocolate/Core/src/Types/Types/Scalars/ByteArrayType.cs b/src/HotChocolate/Core/src/Types/Types/Scalars/ByteArrayType.cs index 43d37144c85..aa593a608c3 100644 --- a/src/HotChocolate/Core/src/Types/Types/Scalars/ByteArrayType.cs +++ b/src/HotChocolate/Core/src/Types/Types/Scalars/ByteArrayType.cs @@ -12,6 +12,7 @@ namespace HotChocolate.Types; /// Represents a scalar type for byte arrays that are serialized as Base64-encoded strings in GraphQL. /// This type handles the conversion between byte arrays in .NET and string representations in GraphQL schemas. /// +[Obsolete("Use Base64StringType instead.")] public class ByteArrayType : ScalarType { /// diff --git a/src/HotChocolate/Core/src/Types/Types/Scalars/ScalarNames.cs b/src/HotChocolate/Core/src/Types/Types/Scalars/ScalarNames.cs index 98a98c2b1e4..2a0f49e2a11 100644 --- a/src/HotChocolate/Core/src/Types/Types/Scalars/ScalarNames.cs +++ b/src/HotChocolate/Core/src/Types/Types/Scalars/ScalarNames.cs @@ -2,27 +2,28 @@ namespace HotChocolate.Types; public static class ScalarNames { - public const string String = nameof(String); - public const string ID = nameof(ID); + public const string Any = nameof(Any); + public const string Base64String = nameof(Base64String); public const string Boolean = nameof(Boolean); - public const string Short = nameof(Short); - public const string Int = nameof(Int); - public const string Long = nameof(Long); - public const string Float = nameof(Float); - public const string Decimal = nameof(Decimal); - public const string URL = nameof(URL); - public const string UUID = nameof(UUID); public const string Byte = nameof(Byte); public const string ByteArray = nameof(ByteArray); - public const string Any = nameof(Any); - public const string DateTime = nameof(DateTime); public const string Date = nameof(Date); - public const string TimeSpan = nameof(TimeSpan); + public const string DateTime = nameof(DateTime); + public const string Decimal = nameof(Decimal); + public const string Float = nameof(Float); + public const string ID = nameof(ID); + public const string Int = nameof(Int); public const string LocalDate = nameof(LocalDate); public const string LocalDateTime = nameof(LocalDateTime); public const string LocalTime = nameof(LocalTime); + public const string Long = nameof(Long); + public const string Short = nameof(Short); + public const string String = nameof(String); + public const string TimeSpan = nameof(TimeSpan); public const string UnsignedByte = nameof(UnsignedByte); - public const string UnsignedShort = nameof(UnsignedShort); public const string UnsignedInt = nameof(UnsignedInt); public const string UnsignedLong = nameof(UnsignedLong); + public const string UnsignedShort = nameof(UnsignedShort); + public const string URL = nameof(URL); + public const string UUID = nameof(UUID); } diff --git a/src/HotChocolate/Core/src/Types/Types/Scalars/Scalars.cs b/src/HotChocolate/Core/src/Types/Types/Scalars/Scalars.cs index 6ff19e27d6c..8d538c46871 100644 --- a/src/HotChocolate/Core/src/Types/Types/Scalars/Scalars.cs +++ b/src/HotChocolate/Core/src/Types/Types/Scalars/Scalars.cs @@ -27,7 +27,7 @@ public static class Scalars { typeof(Guid), typeof(UuidType) }, { typeof(DateTime), typeof(DateTimeType) }, { typeof(DateTimeOffset), typeof(DateTimeType) }, - { typeof(byte[]), typeof(ByteArrayType) }, + { typeof(byte[]), typeof(Base64StringType) }, { typeof(TimeSpan), typeof(TimeSpanType) }, { typeof(DateOnly), typeof(LocalDateType) }, @@ -59,7 +59,10 @@ public static class Scalars { ScalarNames.LocalDateTime, typeof(LocalDateTimeType) }, { ScalarNames.LocalTime, typeof(LocalTimeType) }, + { ScalarNames.Base64String, typeof(Base64StringType) }, +#pragma warning disable CS0618 // Type or member is obsolete { ScalarNames.ByteArray, typeof(ByteArrayType) } +#pragma warning restore CS0618 // Type or member is obsolete }; private static readonly Dictionary s_scalarKinds = new() diff --git a/src/HotChocolate/Core/test/Types.Json.Tests/FromJsonDirectiveTests.cs b/src/HotChocolate/Core/test/Types.Json.Tests/FromJsonDirectiveTests.cs index 4177cb6e3e3..c66003da204 100644 --- a/src/HotChocolate/Core/test/Types.Json.Tests/FromJsonDirectiveTests.cs +++ b/src/HotChocolate/Core/test/Types.Json.Tests/FromJsonDirectiveTests.cs @@ -53,67 +53,73 @@ public async Task MapField_AutomaticScalars() { await new ServiceCollection() .AddGraphQL() - .AddDocumentFromString(@" + .AddDocumentFromString( + """ type Query { foo: Foo } type Foo { - string: String @fromJson - id: ID @fromJson + base64String: Base64String @fromJson boolean: Boolean @fromJson - short: Short @fromJson - int: Int @fromJson - long: Long @fromJson - float: Float @fromJson - decimal: Decimal @fromJson - url: URL @fromJson - uuid: UUID @fromJson byte: Byte @fromJson byteArray: ByteArray @fromJson date: Date @fromJson dateTime: DateTime @fromJson + decimal: Decimal @fromJson + float: Float @fromJson + id: ID @fromJson + int: Int @fromJson + long: Long @fromJson + short: Short @fromJson + string: String @fromJson + url: URL @fromJson + uuid: UUID @fromJson } - ") + """) .AddResolver("Query", "foo", _ => JsonDocument.Parse( """ { - "string": "string", - "id": "id", + "base64String": "Zm9v", "boolean": true, - "short": 1, - "int": 2, - "long": 3, - "float": 1.2, - "decimal": 3.4, - "url": "http://abc", - "uuid":"2d25e877-aecc-4a9e-a191-cf75def49e42", "byte": 1, "byteArray": "Zm9v", "date": "1979-12-20", - "dateTime": "1979-12-20T15:00Z" + "dateTime": "1979-12-20T15:00Z", + "decimal": 3.4, + "float": 1.2, + "id": "id", + "int": 2, + "long": 3, + "short": 1, + "string": "string", + "url": "https://abc", + "uuid":"2d25e877-aecc-4a9e-a191-cf75def49e42" } """).RootElement) .AddJsonSupport() .ExecuteRequestAsync( - @"{ + """ + { foo { - string - id + base64String boolean - short - int - long - float - decimal - url - uuid byte byteArray date dateTime + decimal + float + id + int + long + short + string + url + uuid } - }") + } + """) .MatchSnapshotAsync(); } diff --git a/src/HotChocolate/Core/test/Types.Json.Tests/__snapshots__/FromJsonDirectiveTests.MapField_AutomaticScalars.snap b/src/HotChocolate/Core/test/Types.Json.Tests/__snapshots__/FromJsonDirectiveTests.MapField_AutomaticScalars.snap index 48df711d9dc..41957634d5d 100644 --- a/src/HotChocolate/Core/test/Types.Json.Tests/__snapshots__/FromJsonDirectiveTests.MapField_AutomaticScalars.snap +++ b/src/HotChocolate/Core/test/Types.Json.Tests/__snapshots__/FromJsonDirectiveTests.MapField_AutomaticScalars.snap @@ -1,20 +1,21 @@ -{ +{ "data": { "foo": { - "string": "string", - "id": "id", + "base64String": "Zm9v", "boolean": true, - "short": 1, - "int": 2, - "long": 3, - "float": 1.2, - "decimal": 3.4, - "url": "http://abc/", - "uuid": "2d25e877-aecc-4a9e-a191-cf75def49e42", "byte": 1, "byteArray": "Zm9v", "date": "1979-12-20", - "dateTime": "1979-12-20T15:00:00.000Z" + "dateTime": "1979-12-20T15:00:00.000Z", + "decimal": 3.4, + "float": 1.2, + "id": "id", + "int": 2, + "long": 3, + "short": 1, + "string": "string", + "url": "https://abc/", + "uuid": "2d25e877-aecc-4a9e-a191-cf75def49e42" } } } diff --git a/src/HotChocolate/Core/test/Types.Tests/Configuration/SchemaTypeDiscoveryTests.cs b/src/HotChocolate/Core/test/Types.Tests/Configuration/SchemaTypeDiscoveryTests.cs index 629ea307136..48030c5ad3f 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Configuration/SchemaTypeDiscoveryTests.cs +++ b/src/HotChocolate/Core/test/Types.Tests/Configuration/SchemaTypeDiscoveryTests.cs @@ -105,7 +105,7 @@ public void InferCustomScalarTypes() // act var schema = SchemaBuilder.New() .AddQueryType() - .AddType() + .AddType() .Create(); // assert @@ -113,7 +113,7 @@ public void InferCustomScalarTypes() Assert.NotNull(fooByte); var field = fooByte.Fields["bar"]; - Assert.Equal("ByteArray", field.Type.NamedType().Name); + Assert.Equal("Base64String", field.Type.NamedType().Name); } public class QueryFieldArgument(Bar bar) @@ -180,9 +180,9 @@ public enum FooBar Bar } - public class ByteArrayType : ScalarType + public class Base64StringType : ScalarType { - public ByteArrayType() : base("ByteArray", BindingBehavior.Implicit) + public Base64StringType() : base("Base64String", BindingBehavior.Implicit) { } diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/Base64StringTypeTests.cs b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/Base64StringTypeTests.cs new file mode 100644 index 00000000000..2c789c6c16b --- /dev/null +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/Base64StringTypeTests.cs @@ -0,0 +1,217 @@ +using System.Text.Json; +using HotChocolate.Language; +using HotChocolate.Text.Json; + +namespace HotChocolate.Types; + +public class Base64StringTypeTests +{ + [Fact] + public void Ensure_Type_Name_Is_Correct() + { + // arrange + // act + var type = new Base64StringType(); + + // assert + Assert.Equal("Base64String", type.Name); + } + + [Fact] + public void IsValueCompatible_StringLiteral_True() + { + // arrange + var type = new Base64StringType(); + var literal = new StringValueNode("abc"); + + // act + var isOfType = type.IsValueCompatible(literal); + + // assert + Assert.True(isOfType); + } + + [Fact] + public void IsValueCompatible_IntLiteral_False() + { + // arrange + var type = new Base64StringType(); + var literal = new IntValueNode(123); + + // act + var isOfType = type.IsValueCompatible(literal); + + // assert + Assert.False(isOfType); + } + + [Fact] + public void IsValueCompatible_Null_ReturnsFalse() + { + // arrange + var type = new Base64StringType(); + + // act + var result = type.IsValueCompatible(null!); + + // assert + Assert.False(result); + } + + [Fact] + public void CoerceInputLiteral() + { + // arrange + var type = new Base64StringType(); + var expected = "value"u8.ToArray(); + var literal = new StringValueNode(Convert.ToBase64String(expected)); + + // act + var actual = (byte[]?)type.CoerceInputLiteral(literal); + + // assert + Assert.Equal(expected, actual); + } + + [Fact] + public void CoerceInputLiteral_Invalid_Format() + { + // arrange + var type = new Base64StringType(); + var literal = new IntValueNode(123); + + // act + void Action() => type.CoerceInputLiteral(literal); + + // assert + Assert.Throws(Action); + } + + [Fact] + public void CoerceInputLiteral_Null_Throws() + { + // arrange + var type = new Base64StringType(); + + // act + void Action() => type.CoerceInputLiteral(null!); + + // assert + Assert.Throws(Action); + } + + [Fact] + public void CoerceInputValue() + { + // arrange + var type = new Base64StringType(); + var bytes = "value"u8.ToArray(); + var inputValue = JsonDocument.Parse($"\"{Convert.ToBase64String(bytes)}\"").RootElement; + + // act + var runtimeValue = type.CoerceInputValue(inputValue, null!); + + // assert + Assert.Equal(bytes, runtimeValue); + } + + [Fact] + public void CoerceInputValue_Invalid_Format() + { + // arrange + var type = new Base64StringType(); + var inputValue = JsonDocument.Parse("123").RootElement; + + // act + void Action() => type.CoerceInputValue(inputValue, null!); + + // assert + Assert.Throws(Action); + } + + [Fact] + public void CoerceOutputValue() + { + // arrange + var type = new Base64StringType(); + var value = "value"u8.ToArray(); + + // act + var operation = CommonTestExtensions.CreateOperation(); + var resultDocument = new ResultDocument(operation, 0); + var resultValue = resultDocument.Data.GetProperty("first"); + type.CoerceOutputValue(value, resultValue); + + // assert + resultValue.MatchInlineSnapshot("\"dmFsdWU=\""); + } + + [Fact] + public void CoerceOutputValue_Invalid_Format() + { + // arrange + var type = new Base64StringType(); + + // act + var operation = CommonTestExtensions.CreateOperation(); + var resultDocument = new ResultDocument(operation, 0); + var resultValue = resultDocument.Data.GetProperty("first"); + void Action() => type.CoerceOutputValue(123, resultValue); + + // assert + Assert.Throws(Action); + } + + [Fact] + public void ValueToLiteral() + { + // arrange + var type = new Base64StringType(); + var expected = "value"u8.ToArray(); + var expectedLiteralValue = Convert.ToBase64String(expected); + + // act + var stringLiteral = (StringValueNode)type.ValueToLiteral(expected); + + // assert + Assert.Equal(expectedLiteralValue, stringLiteral.Value); + } + + [Fact] + public void ParseLiteral() + { + // arrange + var type = new Base64StringType(); + var expected = "value"u8.ToArray(); + var literal = new StringValueNode(Convert.ToBase64String(expected)); + + // act + var runtimeValue = type.CoerceInputLiteral(literal); + + // assert + Assert.Equal(expected, Assert.IsType(runtimeValue)); + } + + [Fact] + public void ParseLiteral_InvalidValue() + { + // arrange + var type = new Base64StringType(); + + // act + void Action() => type.CoerceInputLiteral(new IntValueNode(123)); + + // assert + Assert.Throws(Action); + } + + [Fact] + public void Ensure_TypeKind_Is_Scalar() + { + // arrange + var type = new Base64StringType(); + + // assert + Assert.Equal(TypeKind.Scalar, type.Kind); + } +} diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/ByteArrayTypeTests.cs b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/ByteArrayTypeTests.cs index 9907a2a237b..ec9b34624aa 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/ByteArrayTypeTests.cs +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/ByteArrayTypeTests.cs @@ -1,3 +1,5 @@ +#pragma warning disable CS0618 // Type or member is obsolete + using System.Text.Json; using HotChocolate.Language; using HotChocolate.Text.Json; @@ -215,3 +217,5 @@ public void Ensure_TypeKind_Is_Scalar() Assert.Equal(TypeKind.Scalar, type.Kind); } } + +#pragma warning restore CS0618 // Type or member is obsolete diff --git a/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs b/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs index ebce3d1bc8b..90c3f821d28 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs @@ -4,7 +4,8 @@ namespace ChilliCream.Nitro.CommandLine.Client { - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiKeyCommandMutationResult : global::System.IEquatable, ICreateApiKeyCommandMutationResult { public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey createApiKey) @@ -65,7 +66,8 @@ public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? result, global::System.Collections.Generic.IReadOnlyList? errors) @@ -140,7 +142,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::Chil } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key key, global::System.String secret) @@ -204,7 +207,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -274,7 +278,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global::System.String __typename, global::System.String message, global::System.String workspaceId) @@ -344,7 +349,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError(global::System.String __typename, global::System.String message) @@ -411,7 +417,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSuppo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -485,7 +492,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -546,7 +554,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global::System.String __typename, global::System.String message, global::System.String roleId) @@ -616,7 +625,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? workspace) @@ -687,7 +697,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey(global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -748,7 +759,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorPro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -809,48 +821,56 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutationResult { public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey CreateApiKey { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload : ICreateApiKeyCommandMutation_CreateApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret : ICreateApiKeyCommandMutation_CreateApiKey_Result { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IApiNotFoundError : IError { /// @@ -860,12 +880,14 @@ public partial interface IApiNotFoundError : IError public global::System.String ApiId { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IWorkspaceNotFound : IError { /// @@ -875,12 +897,14 @@ public partial interface IWorkspaceNotFound : IError public global::System.String WorkspaceId { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPersonalWorkspaceNotSupportedError : IError { /// @@ -889,12 +913,14 @@ public partial interface IPersonalWorkspaceNotSupportedError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidationError : IError { /// @@ -904,17 +930,20 @@ public partial interface IValidationError : IError public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRoleNotFoundError : IError { /// @@ -924,12 +953,14 @@ public partial interface IRoleNotFoundError : IError public global::System.String RoleId { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -937,44 +968,52 @@ public partial interface IApiKeyDetailPrompt_ApiKey public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? Workspace { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_ApiKey : IApiKeyDetailPrompt_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key : ICreateApiKeyCommandMutation_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -1035,7 +1074,8 @@ public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? apiKey, global::System.Collections.Generic.IReadOnlyList? errors) @@ -1110,7 +1150,8 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::Chil } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey { public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? workspace) @@ -1181,7 +1222,8 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey(global::System.Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiKeyId) @@ -1251,7 +1293,8 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(globa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(global::System.String message) @@ -1312,7 +1355,8 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(global::System.String name) @@ -1373,45 +1417,53 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(globa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload : IDeleteApiKeyCommandMutation_DeleteApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey : IDeleteApiKeyCommand_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IApiKeyNotFoundError { /// @@ -1422,28 +1474,33 @@ public partial interface IApiKeyNotFoundError public global::System.String ApiKeyId { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -1508,7 +1565,8 @@ public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? apiKeys) @@ -1573,10 +1631,11 @@ public ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro. } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection { public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo pageInfo) @@ -1653,10 +1712,11 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::Sy } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node node) @@ -1726,10 +1786,11 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::Sy } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -1819,7 +1880,8 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -1890,7 +1952,8 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace(global::System.String name) @@ -1951,27 +2014,31 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys { /// @@ -1984,18 +2051,20 @@ public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommand_ApiKeyEdge { /// @@ -2008,26 +2077,29 @@ public partial interface IListApiKeyCommand_ApiKeyEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageInfo { /// @@ -2048,49 +2120,57 @@ public partial interface IPageInfo public global::System.String? StartCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node : IListApiKeyCommand_ApiKey { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiCommandMutationResult : global::System.IEquatable, ICreateApiCommandMutationResult { public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges pushWorkspaceChanges) @@ -2151,7 +2231,8 @@ public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(global::System.Collections.Generic.IReadOnlyList? changes, global::System.Collections.Generic.IReadOnlyList? errors) @@ -2229,7 +2310,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -2304,7 +2386,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(global::System.String message) @@ -2365,7 +2448,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(global::System.String message) @@ -2426,7 +2510,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInval } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(global::System.String message) @@ -2487,7 +2572,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(global::System.String message) @@ -2548,7 +2634,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChange } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(global::System.String message) @@ -2609,7 +2696,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDelete } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(global::System.String message) @@ -2670,7 +2758,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCol } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(global::System.String message) @@ -2731,7 +2820,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(global::System.String message) @@ -2792,7 +2882,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument() @@ -2849,7 +2940,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -2930,7 +3022,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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() @@ -2987,7 +3080,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDoc } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment() @@ -3044,7 +3138,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(global::System.String id, global::System.String name) @@ -3108,7 +3203,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Wo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) @@ -3169,7 +3265,8 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Api } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) @@ -3233,25 +3330,29 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Sch } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : ICreateApiCommandMutation_PushWorkspaceChanges { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -3259,72 +3360,86 @@ public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : ICreateApiCommandMutation_PushWorkspaceChanges_Changes { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -3334,62 +3449,73 @@ public partial interface IApiDetailPrompt_Api public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_Api : IApiDetailPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result, ICreateApiCommandMutation_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings { public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry { public global::System.Boolean TreatDangerousAsBreaking { get; } public global::System.Boolean AllowBreakingSchemaChanges { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQueryResult : global::System.IEquatable, IDeleteApiCommandQueryResult { public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? node) @@ -3457,7 +3583,8 @@ public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Api(global::System.String name, global::System.String version, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? workspace) @@ -3528,7 +3655,8 @@ public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_ApiDocument() @@ -3585,7 +3713,8 @@ public DeleteApiCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_ApiKey() @@ -3642,7 +3771,8 @@ public DeleteApiCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Client() @@ -3699,7 +3829,8 @@ public DeleteApiCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_ClientChangeLog() @@ -3756,7 +3887,8 @@ public DeleteApiCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_ClientDeployment() @@ -3813,7 +3945,8 @@ public DeleteApiCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_ClientVersion() @@ -3870,7 +4003,8 @@ public DeleteApiCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics() @@ -3927,7 +4061,8 @@ public DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Environment() @@ -3984,7 +4119,8 @@ public DeleteApiCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_FusionConfigurationChangeLog() @@ -4041,7 +4177,8 @@ public DeleteApiCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_FusionConfigurationDeployment() @@ -4098,7 +4235,8 @@ public DeleteApiCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -4155,7 +4293,8 @@ public DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition() @@ -4212,7 +4351,8 @@ public DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -4269,7 +4409,8 @@ public DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition() @@ -4326,7 +4467,8 @@ public DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -4383,7 +4525,8 @@ public DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -4440,7 +4583,8 @@ public DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -4497,7 +4641,8 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -4554,7 +4699,8 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -4611,7 +4757,8 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -4668,7 +4815,8 @@ public DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -4725,7 +4873,8 @@ public DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -4782,7 +4931,8 @@ public DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -4839,7 +4989,8 @@ public DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Group() @@ -4896,7 +5047,8 @@ public DeleteApiCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_McpFeatureCollection() @@ -4953,7 +5105,8 @@ public DeleteApiCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -5010,7 +5163,8 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment() @@ -5067,7 +5221,8 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_McpFeatureCollectionVersion() @@ -5124,7 +5279,8 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_OpenApiCollection() @@ -5181,7 +5337,8 @@ public DeleteApiCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog() @@ -5238,7 +5395,8 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_OpenApiCollectionDeployment() @@ -5295,7 +5453,8 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_OpenApiCollectionVersion() @@ -5352,7 +5511,8 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Organization() @@ -5409,7 +5569,8 @@ public DeleteApiCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_OrganizationMember() @@ -5466,7 +5627,8 @@ public DeleteApiCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_SchemaChangeLog() @@ -5523,7 +5685,8 @@ public DeleteApiCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_SchemaDeployment() @@ -5580,7 +5743,8 @@ public DeleteApiCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Stage() @@ -5637,7 +5801,8 @@ public DeleteApiCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_User() @@ -5694,7 +5859,8 @@ public DeleteApiCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Workspace() @@ -5751,7 +5917,8 @@ public DeleteApiCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_WorkspaceDocument() @@ -5808,7 +5975,8 @@ public DeleteApiCommandQuery_Node_WorkspaceDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) @@ -5869,7 +6037,8 @@ public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQueryResult { /// @@ -5878,15 +6047,17 @@ public partial interface IDeleteApiCommandQueryResult public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -5894,223 +6065,267 @@ public partial interface IDeleteApiCommandQuery_Api public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? Workspace { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Api : IDeleteApiCommandQuery_Node, IDeleteApiCommandQuery_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_ApiDocument : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_ApiKey : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Client : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_ClientChangeLog : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_ClientDeployment : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_ClientVersion : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_CoordinateClientUsageMetrics : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Environment : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_FusionConfigurationChangeLog : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_FusionConfigurationDeployment : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLDirectiveDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLEnumValueDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Group : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollection : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionDeployment : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionVersion : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_OpenApiCollection : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionChangeLog : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionDeployment : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionVersion : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Organization : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_OrganizationMember : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_SchemaChangeLog : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_SchemaDeployment : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Stage : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_User : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Workspace : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_WorkspaceDocument : IDeleteApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandMutationResult : global::System.IEquatable, IDeleteApiCommandMutationResult { public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById deleteApiById) @@ -6171,7 +6386,8 @@ public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) @@ -6246,7 +6462,8 @@ public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::Chill } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -6327,7 +6544,8 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::System.String message) @@ -6388,7 +6606,8 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(global::System.String message) @@ -6449,7 +6668,8 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(globa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(global::System.String message) @@ -6510,7 +6730,8 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(glob } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::System.String id, global::System.String name) @@ -6574,7 +6795,8 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) @@ -6635,7 +6857,8 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) @@ -6699,90 +6922,106 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_Schema } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutationResult { public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById DeleteApiById { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutation_DeleteApiById { public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? Api { get; } public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload : IDeleteApiCommandMutation_DeleteApiById { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutation_DeleteApiById_Api : IApiDetailPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Api : IDeleteApiCommandMutation_DeleteApiById_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiCommandQueryResult : global::System.IEquatable, IListApiCommandQueryResult { public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? workspaceById) @@ -6847,7 +7086,8 @@ public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? apis) @@ -6912,10 +7152,11 @@ 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiCommandQuery_WorkspaceById_Apis_ApisConnection : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_ApisConnection { public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo pageInfo) @@ -6992,10 +7233,11 @@ public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Coll } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node node) @@ -7065,10 +7307,11 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Stri } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -7158,7 +7401,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.B } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -7239,7 +7483,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Stri } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(global::System.String id, global::System.String name) @@ -7303,7 +7548,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) @@ -7364,7 +7610,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) @@ -7428,27 +7675,31 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiCommandQuery_WorkspaceById_Apis { /// @@ -7461,18 +7712,20 @@ public partial interface IListApiCommandQuery_WorkspaceById_Apis 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiCommand_ApiEdge { /// @@ -7485,89 +7738,103 @@ public partial interface IListApiCommand_ApiEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo : IListApiCommandQuery_WorkspaceById_Apis_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiCommand_Api : IApiDetailPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node : IListApiCommand_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -7628,7 +7895,8 @@ public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -7703,7 +7971,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -7784,7 +8053,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -7854,7 +8124,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -7921,7 +8192,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -7985,7 +8257,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -8046,7 +8319,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) @@ -8110,55 +8384,65 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegist } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload : ISetApiSettingsCommandMutation_UpdateApiSettings { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPrompt_Api : IApiDetailPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_Api : ISelectApiPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api : ISetApiSettingsCommandMutation_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Api : ISetApiSettingsCommandMutation_UpdateApiSettings_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUnauthorizedOperation : IError { /// @@ -8167,47 +8451,55 @@ public partial interface IUnauthorizedOperation : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace { public global::System.String Id { get; } public global::System.String Name { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings { public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry { public global::System.Boolean TreatDangerousAsBreaking { get; } public global::System.Boolean AllowBreakingSchemaChanges { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -8275,7 +8567,8 @@ public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IS } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -8356,7 +8649,8 @@ public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_ApiDocument() @@ -8413,7 +8707,8 @@ public ShowApiCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_ApiKey() @@ -8470,7 +8765,8 @@ public ShowApiCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Client() @@ -8527,7 +8823,8 @@ public ShowApiCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_ClientChangeLog() @@ -8584,7 +8881,8 @@ public ShowApiCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_ClientDeployment() @@ -8641,7 +8939,8 @@ public ShowApiCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_ClientVersion() @@ -8698,7 +8997,8 @@ public ShowApiCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() @@ -8755,7 +9055,8 @@ public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Environment() @@ -8812,7 +9113,8 @@ public ShowApiCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_FusionConfigurationChangeLog() @@ -8869,7 +9171,8 @@ public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_FusionConfigurationDeployment() @@ -8926,7 +9229,8 @@ public ShowApiCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -8983,7 +9287,8 @@ public ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLDirectiveDefinition { public ShowApiCommandQuery_Node_GraphQLDirectiveDefinition() @@ -9040,7 +9345,8 @@ public ShowApiCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -9097,7 +9403,8 @@ public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() @@ -9154,7 +9461,8 @@ public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -9211,7 +9519,8 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -9268,7 +9577,8 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -9325,7 +9635,8 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -9382,7 +9693,8 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition { public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -9439,7 +9751,8 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -9496,7 +9809,8 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLObjectFieldDefinition { public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -9553,7 +9867,8 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -9610,7 +9925,8 @@ public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -9667,7 +9983,8 @@ public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Group() @@ -9724,7 +10041,8 @@ public ShowApiCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollection { public ShowApiCommandQuery_Node_McpFeatureCollection() @@ -9781,7 +10099,8 @@ public ShowApiCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -9838,7 +10157,8 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() @@ -9895,7 +10215,8 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_McpFeatureCollectionVersion() @@ -9952,7 +10273,8 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_OpenApiCollection() @@ -10009,7 +10331,8 @@ public ShowApiCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() @@ -10066,7 +10389,8 @@ public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_OpenApiCollectionDeployment() @@ -10123,7 +10447,8 @@ public ShowApiCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_OpenApiCollectionVersion() @@ -10180,7 +10505,8 @@ public ShowApiCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Organization() @@ -10237,7 +10563,8 @@ public ShowApiCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_OrganizationMember() @@ -10294,7 +10621,8 @@ public ShowApiCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaChangeLog { public ShowApiCommandQuery_Node_SchemaChangeLog() @@ -10351,7 +10679,8 @@ public ShowApiCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaDeployment { public ShowApiCommandQuery_Node_SchemaDeployment() @@ -10408,7 +10737,8 @@ public ShowApiCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_Stage : global::System.IEquatable, IShowApiCommandQuery_Node_Stage { public ShowApiCommandQuery_Node_Stage() @@ -10465,7 +10795,8 @@ public ShowApiCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_User : global::System.IEquatable, IShowApiCommandQuery_Node_User { public ShowApiCommandQuery_Node_User() @@ -10522,7 +10853,8 @@ public ShowApiCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_Workspace : global::System.IEquatable, IShowApiCommandQuery_Node_Workspace { public ShowApiCommandQuery_Node_Workspace() @@ -10579,7 +10911,8 @@ public ShowApiCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_WorkspaceDocument() @@ -10636,7 +10969,8 @@ public ShowApiCommandQuery_Node_WorkspaceDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, global::System.String name) @@ -10700,7 +11034,8 @@ public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) @@ -10761,7 +11096,8 @@ public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) @@ -10825,7 +11161,8 @@ public ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQueryResult { /// @@ -10834,255 +11171,304 @@ public partial interface IShowApiCommandQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Api : IShowApiCommandQuery_Node, IApiDetailPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_ApiDocument : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_ApiKey : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Client : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_ClientChangeLog : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_ClientDeployment : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_ClientVersion : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_CoordinateClientUsageMetrics : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Environment : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_FusionConfigurationChangeLog : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_FusionConfigurationDeployment : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLDirectiveDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLEnumTypeDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLEnumValueDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLObjectFieldDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLScalarTypeDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_GraphQLUnionTypeDefinition : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Group : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_McpFeatureCollection : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionChangeLog : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionDeployment : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionVersion : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_OpenApiCollection : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_OpenApiCollectionChangeLog : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_OpenApiCollectionDeployment : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_OpenApiCollectionVersion : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Organization : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_OrganizationMember : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_SchemaChangeLog : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_SchemaDeployment : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Stage : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_User : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Workspace : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_WorkspaceDocument : IShowApiCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Settings_ApiSettings : IShowApiCommandQuery_Node_Settings { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientCommandMutationResult : global::System.IEquatable, ICreateClientCommandMutationResult { public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient createClient) @@ -11143,7 +11529,8 @@ public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateClientCommandMutation_CreateClient_CreateClientPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? client, global::System.Collections.Generic.IReadOnlyList? errors) @@ -11218,7 +11605,8 @@ public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::Chil } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -11296,7 +11684,8 @@ public CreateClientCommandMutation_CreateClient_Client_Client(global::System.Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) @@ -11366,7 +11755,8 @@ public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) @@ -11433,7 +11823,8 @@ public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) @@ -11501,10 +11892,11 @@ 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", "15.1.8.0")] + [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 CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) @@ -11581,10 +11973,11 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionCon } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) @@ -11654,10 +12047,11 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVers } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) @@ -11731,7 +12125,8 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInf } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -11805,7 +12200,8 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Clien } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) @@ -11870,7 +12266,8 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) @@ -11931,25 +12328,29 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_CreateClientPayload : ICreateClientCommandMutation_CreateClient { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -11958,52 +12359,61 @@ public partial interface IClientDetailPrompt_Client public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_Client : IClientDetailPrompt_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Client : ICreateClientCommandMutation_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Client_Client : ICreateClientCommandMutation_CreateClient_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions { /// @@ -12016,18 +12426,20 @@ public partial interface ICreateClientCommandMutation_CreateClient_Client_Versio 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IClientDetailPrompt_ClientVersionEdge { /// @@ -12040,26 +12452,29 @@ public partial interface IClientDetailPrompt_ClientVersionEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo { /// @@ -12072,15 +12487,17 @@ public partial interface ICreateClientCommandMutation_CreateClient_Client_Versio public global::System.String? EndCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo : ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -12089,34 +12506,40 @@ public partial interface ICreateClientCommandMutation_CreateClient_Client_Versio public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteClientByIdCommandMutationResult : global::System.IEquatable, IDeleteClientByIdCommandMutationResult { public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById deleteClientById) @@ -12177,7 +12600,8 @@ public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? client, global::System.Collections.Generic.IReadOnlyList? errors) @@ -12252,7 +12676,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -12330,7 +12755,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) @@ -12394,7 +12820,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundErr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) @@ -12461,7 +12888,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOpera } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) @@ -12529,10 +12957,11 @@ 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", "15.1.8.0")] + [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 DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) @@ -12609,10 +13038,11 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVe } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) @@ -12682,10 +13112,11 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Cl } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) @@ -12759,7 +13190,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -12833,7 +13265,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) @@ -12898,7 +13331,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) @@ -12959,76 +13393,89 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload : IDeleteClientByIdCommandMutation_DeleteClientById { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_Client : IClientDetailPrompt_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client : IDeleteClientByIdCommandMutation_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Client : IDeleteClientByIdCommandMutation_DeleteClientById_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions { /// @@ -13041,34 +13488,38 @@ public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Clien 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo { /// @@ -13081,15 +13532,17 @@ public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Clien public global::System.String? EndCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -13098,34 +13551,40 @@ public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Clien public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -13193,7 +13652,8 @@ public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? clients) @@ -13258,7 +13718,8 @@ public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Cli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_ApiDocument() @@ -13315,7 +13776,8 @@ public ListClientCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_ApiKey() @@ -13372,7 +13834,8 @@ public ListClientCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Client() @@ -13429,7 +13892,8 @@ public ListClientCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_ClientChangeLog() @@ -13486,7 +13950,8 @@ public ListClientCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_ClientDeployment() @@ -13543,7 +14008,8 @@ public ListClientCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_ClientVersion() @@ -13600,7 +14066,8 @@ public ListClientCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_CoordinateClientUsageMetrics() @@ -13657,7 +14124,8 @@ public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Environment() @@ -13714,7 +14182,8 @@ public ListClientCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_FusionConfigurationChangeLog() @@ -13771,7 +14240,8 @@ public ListClientCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_FusionConfigurationDeployment() @@ -13828,7 +14298,8 @@ public ListClientCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -13885,7 +14356,8 @@ public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLDirectiveDefinition() @@ -13942,7 +14414,8 @@ public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -13999,7 +14472,8 @@ public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLEnumValueDefinition() @@ -14056,7 +14530,8 @@ public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -14113,7 +14588,8 @@ public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -14170,7 +14646,8 @@ public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -14227,7 +14704,8 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -14284,7 +14762,8 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -14341,7 +14820,8 @@ public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -14398,7 +14878,8 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -14455,7 +14936,8 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -14512,7 +14994,8 @@ public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -14569,7 +15052,8 @@ public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Group() @@ -14626,7 +15110,8 @@ public ListClientCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_McpFeatureCollection() @@ -14683,7 +15168,8 @@ public ListClientCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -14740,7 +15226,8 @@ public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_McpFeatureCollectionDeployment() @@ -14797,7 +15284,8 @@ public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_McpFeatureCollectionVersion() @@ -14854,7 +15342,8 @@ public ListClientCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_OpenApiCollection() @@ -14911,7 +15400,8 @@ public ListClientCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_OpenApiCollectionChangeLog() @@ -14968,7 +15458,8 @@ public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_OpenApiCollectionDeployment() @@ -15025,7 +15516,8 @@ public ListClientCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_OpenApiCollectionVersion() @@ -15082,7 +15574,8 @@ public ListClientCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Organization() @@ -15139,7 +15632,8 @@ public ListClientCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_OrganizationMember() @@ -15196,7 +15690,8 @@ public ListClientCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_SchemaChangeLog() @@ -15253,7 +15748,8 @@ public ListClientCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_SchemaDeployment() @@ -15310,7 +15806,8 @@ public ListClientCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Stage() @@ -15367,7 +15864,8 @@ public ListClientCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQuery_Node_User : global::System.IEquatable, IListClientCommandQuery_Node_User { public ListClientCommandQuery_Node_User() @@ -15424,7 +15922,8 @@ public ListClientCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQuery_Node_Workspace : global::System.IEquatable, IListClientCommandQuery_Node_Workspace { public ListClientCommandQuery_Node_Workspace() @@ -15481,7 +15980,8 @@ public ListClientCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListClientCommandQuery_Node_WorkspaceDocument { public ListClientCommandQuery_Node_WorkspaceDocument() @@ -15538,10 +16038,11 @@ public ListClientCommandQuery_Node_WorkspaceDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQuery_Node_Clients_ClientsConnection : global::System.IEquatable, IListClientCommandQuery_Node_Clients_ClientsConnection { public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo pageInfo) @@ -15618,10 +16119,11 @@ public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Coll } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node node) @@ -15691,10 +16193,11 @@ public ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.Stri } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -15784,7 +16287,8 @@ public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Bool } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -15862,7 +16366,8 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.Stri } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) @@ -15930,10 +16435,11 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.Str } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) @@ -16010,10 +16516,11 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConn } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) @@ -16083,10 +16590,11 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersi } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) @@ -16160,7 +16668,8 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -16234,7 +16743,8 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Client } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) @@ -16299,7 +16809,8 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) @@ -16360,7 +16871,8 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQueryResult { /// @@ -16369,224 +16881,267 @@ public partial interface IListClientCommandQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_ApiDocument : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_ApiKey : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Client : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_ClientChangeLog : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_ClientDeployment : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_ClientVersion : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_CoordinateClientUsageMetrics : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Environment : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_FusionConfigurationChangeLog : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_FusionConfigurationDeployment : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLDirectiveDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLEnumTypeDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLEnumValueDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLObjectFieldDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLScalarTypeDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_GraphQLUnionTypeDefinition : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Group : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_McpFeatureCollection : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_McpFeatureCollectionChangeLog : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_McpFeatureCollectionDeployment : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_McpFeatureCollectionVersion : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_OpenApiCollection : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_OpenApiCollectionChangeLog : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_OpenApiCollectionDeployment : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_OpenApiCollectionVersion : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Organization : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_OrganizationMember : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_SchemaChangeLog : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_SchemaDeployment : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Stage : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_User : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Workspace : IListClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Clients { /// @@ -16599,18 +17154,20 @@ public partial interface IListClientCommandQuery_Node_Clients 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Clients_Edges { /// @@ -16623,56 +17180,64 @@ public partial interface IListClientCommandQuery_Node_Clients_Edges 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Clients_PageInfo_PageInfo : IListClientCommandQuery_Node_Clients_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Clients_Edges_Node : IClientDetailPrompt_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions { /// @@ -16685,34 +17250,38 @@ public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Version 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo { /// @@ -16725,15 +17294,17 @@ public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Version public global::System.String? EndCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -16742,34 +17313,40 @@ public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Version public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -16830,7 +17407,8 @@ public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishClientVersion_PublishClient_PublishClientPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) @@ -16905,7 +17483,8 @@ public PublishClientVersion_PublishClient_PublishClientPayload(global::System.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -16975,7 +17554,8 @@ public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::Syst } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) @@ -17039,7 +17619,8 @@ public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::Sys } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -17106,7 +17687,8 @@ public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String clientId) @@ -17173,30 +17755,35 @@ public PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError(glob } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishClientVersion_PublishClient_PublishClientPayload : IPublishClientVersion_PublishClient { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishClientVersion_PublishClient_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IStageNotFoundError : IError { /// @@ -17206,34 +17793,40 @@ public partial interface IStageNotFoundError : IError public global::System.String Name { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -17294,7 +17887,8 @@ public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -17368,7 +17962,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -17435,7 +18030,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -17502,7 +18098,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationIn } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -17569,7 +18166,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) @@ -17642,7 +18240,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) @@ -17712,7 +18311,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) @@ -17786,7 +18386,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForAppr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -17853,7 +18454,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Conc } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) @@ -17928,7 +18530,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Pers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -17995,7 +18598,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Proc } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError() @@ -18052,7 +18656,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Read } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -18119,7 +18724,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Unex } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -18184,7 +18790,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -18249,7 +18856,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -18314,7 +18922,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -18379,7 +18988,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -18444,7 +19054,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(global::System.String id, global::System.String name) @@ -18508,7 +19119,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -18586,7 +19198,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -18661,7 +19274,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -18736,7 +19350,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -18804,7 +19419,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -18878,7 +19494,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -18943,7 +19560,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -19008,7 +19626,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -19073,7 +19692,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -19138,7 +19758,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -19213,7 +19834,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -19281,7 +19903,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) @@ -19348,7 +19971,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -19424,7 +20048,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -19498,7 +20123,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -19563,7 +20189,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -19628,7 +20255,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) @@ -19713,7 +20341,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) @@ -19777,7 +20406,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -19855,7 +20485,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -19932,7 +20563,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20009,7 +20641,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20086,7 +20719,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20163,7 +20797,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20240,7 +20875,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20317,7 +20953,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -20387,7 +21024,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -20454,7 +21092,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -20524,7 +21163,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20601,7 +21241,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -20669,7 +21310,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -20741,7 +21383,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -20813,7 +21456,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -20877,7 +21521,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -20953,7 +21598,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21033,7 +21679,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21109,7 +21756,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21190,7 +21838,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21260,7 +21909,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21330,7 +21980,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21411,7 +22062,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -21481,7 +22133,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21558,7 +22211,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -21628,7 +22282,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21709,7 +22364,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21785,7 +22441,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21861,7 +22518,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -21941,7 +22599,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -22022,7 +22681,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -22098,7 +22758,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -22174,7 +22835,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -22244,7 +22906,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -22314,7 +22977,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -22394,7 +23058,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -22464,7 +23129,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -22534,7 +23200,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -22615,7 +23282,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -22691,7 +23359,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -22767,7 +23436,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -22837,7 +23507,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -22907,7 +23578,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -22987,7 +23659,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -23068,7 +23741,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -23149,7 +23823,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -23219,7 +23894,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -23289,7 +23965,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -23353,7 +24030,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -23424,7 +24102,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -23492,7 +24171,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -23556,7 +24236,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -23624,7 +24305,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -23692,7 +24374,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -23766,7 +24449,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -23847,7 +24531,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -23920,7 +24605,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 { public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -23988,7 +24674,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 { 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) @@ -24069,7 +24756,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 { public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -24137,7 +24825,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24218,7 +24907,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24291,7 +24981,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24367,7 +25058,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -24447,7 +25139,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24523,7 +25216,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -24591,7 +25285,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24672,7 +25367,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24745,7 +25441,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24830,7 +25527,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -24891,7 +25589,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -24976,7 +25675,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -25037,7 +25737,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -25111,7 +25812,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -25192,7 +25894,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -25265,7 +25968,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -25329,7 +26033,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -25393,64 +26098,75 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdatedResult { public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate OnClientVersionPublishingUpdate { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IClientVersionPublishFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IClientVersionPublishSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskApproved { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IProcessingTaskIsQueued { /// @@ -25460,12 +26176,14 @@ public partial interface IProcessingTaskIsQueued public global::System.Int32 QueuePosition { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskIsQueued { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IProcessingTaskIsReady { /// @@ -25474,29 +26192,34 @@ public partial interface IProcessingTaskIsReady public global::System.String Ready { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskIsReady { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IWaitForApproval { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IConcurrentOperationError : IError { /// @@ -25505,12 +26228,14 @@ public partial interface IConcurrentOperationError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPersistedQueryValidationError { public global::System.String Message { get; } @@ -25518,12 +26243,14 @@ public partial interface IPersistedQueryValidationError public global::System.Collections.Generic.IReadOnlyList Queries { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IProcessingTimeoutError { /// @@ -25533,17 +26260,20 @@ public partial interface IProcessingTimeoutError public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUnexpectedProcessingError { /// @@ -25553,59 +26283,69 @@ public partial interface IUnexpectedProcessingError public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment { public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25614,44 +26354,52 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IInvalidGraphQLSchemaError { /// @@ -25662,69 +26410,82 @@ public partial interface IInvalidGraphQLSchemaError public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOperationsAreNotAllowedError { /// @@ -25734,12 +26495,14 @@ public partial interface IOperationsAreNotAllowedError public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISchemaVersionSyntaxError { /// @@ -25752,27 +26515,32 @@ public partial interface ISchemaVersionSyntaxError public global::System.Int32 Line { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25781,24 +26549,28 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25807,29 +26579,34 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISchemaChangeLogEntry { public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25840,12 +26617,14 @@ public partial interface IDirectiveModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25856,12 +26635,14 @@ public partial interface IEnumModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25872,12 +26653,14 @@ public partial interface IInputObjectModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25888,12 +26671,14 @@ public partial interface IInterfaceModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25904,12 +26689,14 @@ public partial interface IObjectModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25920,12 +26707,14 @@ public partial interface IScalarModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25935,17 +26724,20 @@ public partial interface ITypeSystemMemberAddedChange : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25955,12 +26747,14 @@ public partial interface ITypeSystemMemberRemovedChange : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -25971,66 +26765,77 @@ public partial interface IUnionModifiedChange : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26042,12 +26847,14 @@ public partial interface IArgumentAdded : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26059,12 +26866,14 @@ public partial interface IArgumentChanged : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26076,12 +26885,14 @@ public partial interface IArgumentRemoved : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26092,12 +26903,14 @@ public partial interface IDescriptionChanged : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26107,12 +26920,14 @@ public partial interface IDirectiveLocationAdded : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26122,68 +26937,80 @@ public partial interface IDirectiveLocationRemoved : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26191,12 +27018,14 @@ public partial interface IFieldAddedChange : ISchemaChange public global::System.String FieldName { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26204,12 +27033,14 @@ public partial interface IFieldRemovedChange : ISchemaChange public global::System.String FieldName { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26217,55 +27048,65 @@ public partial interface IInputFieldChanged : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26273,197 +27114,232 @@ public partial interface IOutputFieldChanged : ISchemaChange public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -26474,87 +27350,104 @@ public partial interface ITypeChanged : ISchemaChange public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOpenApiCollectionValidationDocumentError { public global::System.String? Code { get; } @@ -26563,28 +27456,33 @@ public partial interface IOpenApiCollectionValidationDocumentError public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOpenApiCollectionValidationEntityValidationError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IMcpFeatureCollectionValidationDocumentError { public global::System.String? Code { get; } @@ -26593,68 +27491,80 @@ public partial interface IMcpFeatureCollectionValidationDocumentError public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IMcpFeatureCollectionValidationEntityValidationError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -26722,7 +27632,8 @@ public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Api() @@ -26779,7 +27690,8 @@ public ShowClientCommandQuery_Node_Api() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_ApiDocument() @@ -26836,7 +27748,8 @@ public ShowClientCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_ApiKey() @@ -26893,7 +27806,8 @@ public ShowClientCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -26971,7 +27885,8 @@ public ShowClientCommandQuery_Node_Client(global::System.String id, global::Syst } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_ClientChangeLog() @@ -27028,7 +27943,8 @@ public ShowClientCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_ClientDeployment() @@ -27085,7 +28001,8 @@ public ShowClientCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_ClientVersion() @@ -27142,7 +28059,8 @@ public ShowClientCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_CoordinateClientUsageMetrics() @@ -27199,7 +28117,8 @@ public ShowClientCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Environment() @@ -27256,7 +28175,8 @@ public ShowClientCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_FusionConfigurationChangeLog() @@ -27313,7 +28233,8 @@ public ShowClientCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_FusionConfigurationDeployment() @@ -27370,7 +28291,8 @@ public ShowClientCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -27427,7 +28349,8 @@ public ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLDirectiveDefinition() @@ -27484,7 +28407,8 @@ public ShowClientCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -27541,7 +28465,8 @@ public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() @@ -27598,7 +28523,8 @@ public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -27655,7 +28581,8 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -27712,7 +28639,8 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -27769,7 +28697,8 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -27826,7 +28755,8 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -27883,7 +28813,8 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -27940,7 +28871,8 @@ public ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -27997,7 +28929,8 @@ public ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -28054,7 +28987,8 @@ public ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -28111,7 +29045,8 @@ public ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Group() @@ -28168,7 +29103,8 @@ public ShowClientCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_McpFeatureCollection() @@ -28225,7 +29161,8 @@ public ShowClientCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -28282,7 +29219,8 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_McpFeatureCollectionDeployment() @@ -28339,7 +29277,8 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_McpFeatureCollectionVersion() @@ -28396,7 +29335,8 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_OpenApiCollection() @@ -28453,7 +29393,8 @@ public ShowClientCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_OpenApiCollectionChangeLog() @@ -28510,7 +29451,8 @@ public ShowClientCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_OpenApiCollectionDeployment() @@ -28567,7 +29509,8 @@ public ShowClientCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_OpenApiCollectionVersion() @@ -28624,7 +29567,8 @@ public ShowClientCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Organization() @@ -28681,7 +29625,8 @@ public ShowClientCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_OrganizationMember() @@ -28738,7 +29683,8 @@ public ShowClientCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_SchemaChangeLog() @@ -28795,7 +29741,8 @@ public ShowClientCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_SchemaDeployment() @@ -28852,7 +29799,8 @@ public ShowClientCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Stage() @@ -28909,7 +29857,8 @@ public ShowClientCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_User() @@ -28966,7 +29915,8 @@ public ShowClientCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Workspace() @@ -29023,7 +29973,8 @@ public ShowClientCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_WorkspaceDocument() @@ -29080,7 +30031,8 @@ public ShowClientCommandQuery_Node_WorkspaceDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) @@ -29148,10 +30100,11 @@ public ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::S } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) @@ -29228,10 +30181,11 @@ public ShowClientCommandQuery_Node_Versions_ClientVersionConnection(global::Syst } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) @@ -29301,10 +30255,11 @@ public ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(global::Syst } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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) @@ -29378,7 +30333,8 @@ public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -29452,7 +30408,8 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::Sys } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) @@ -29517,7 +30474,8 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -29578,7 +30536,8 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQueryResult { /// @@ -29587,235 +30546,280 @@ public partial interface IShowClientCommandQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Api : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_ApiDocument : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_ApiKey : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Client : IShowClientCommandQuery_Node, IClientDetailPrompt_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_ClientChangeLog : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_ClientDeployment : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_ClientVersion : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_CoordinateClientUsageMetrics : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Environment : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_FusionConfigurationChangeLog : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_FusionConfigurationDeployment : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLDirectiveDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLEnumTypeDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLEnumValueDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLObjectFieldDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLScalarTypeDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_GraphQLUnionTypeDefinition : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Group : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_McpFeatureCollection : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionChangeLog : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionDeployment : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionVersion : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_OpenApiCollection : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_OpenApiCollectionChangeLog : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_OpenApiCollectionDeployment : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_OpenApiCollectionVersion : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Organization : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_OrganizationMember : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_SchemaChangeLog : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_SchemaDeployment : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Stage : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_User : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Workspace : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_WorkspaceDocument : IShowClientCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Versions { /// @@ -29828,34 +30832,38 @@ public partial interface IShowClientCommandQuery_Node_Versions 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Versions_PageInfo { /// @@ -29868,15 +30876,17 @@ public partial interface IShowClientCommandQuery_Node_Versions_PageInfo public global::System.String? EndCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Versions_PageInfo_PageInfo : IShowClientCommandQuery_Node_Versions_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -29885,34 +30895,40 @@ public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UnpublishClientResult : global::System.IEquatable, IUnpublishClientResult { public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient unpublishClient) @@ -29973,7 +30989,8 @@ public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? clientVersion, global::System.Collections.Generic.IReadOnlyList? errors) @@ -30048,7 +31065,8 @@ public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCrea } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? client) @@ -30116,7 +31134,8 @@ public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::Syste } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -30186,7 +31205,8 @@ public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) @@ -30250,7 +31270,8 @@ public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -30317,7 +31338,8 @@ public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::Syst } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String clientId) @@ -30384,7 +31406,8 @@ public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -30451,7 +31474,8 @@ public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::System.String name) @@ -30512,78 +31536,92 @@ public UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::Syste } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUnpublishClient_UnpublishClient_UnpublishClientPayload : IUnpublishClient_UnpublishClient { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUnpublishClient_UnpublishClient_ClientVersion_ClientVersion : IUnpublishClient_UnpublishClient_ClientVersion { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUnpublishClient_UnpublishClient_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClientResult : global::System.IEquatable, IUploadClientResult { public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient uploadClient) @@ -30644,7 +31682,8 @@ public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadCl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? clientVersion, global::System.Collections.Generic.IReadOnlyList? errors) @@ -30719,7 +31758,8 @@ public UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClient_UploadClient_ClientVersion_ClientVersion : global::System.IEquatable, IUploadClient_UploadClient_ClientVersion_ClientVersion { public UploadClient_UploadClient_ClientVersion_ClientVersion(global::System.String id) @@ -30780,7 +31820,8 @@ public UploadClient_UploadClient_ClientVersion_ClientVersion(global::System.Stri } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClient_UploadClient_Errors_ClientNotFoundError : global::System.IEquatable, IUploadClient_UploadClient_Errors_ClientNotFoundError { public UploadClient_UploadClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) @@ -30844,7 +31885,8 @@ public UploadClient_UploadClient_Errors_ClientNotFoundError(global::System.Strin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -30911,7 +31953,8 @@ public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::System.String message) @@ -30972,7 +32015,8 @@ public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::Syste } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -31039,7 +32083,8 @@ public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) @@ -31106,61 +32151,72 @@ public UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadClient_UploadClient_UploadClientPayload : IUploadClient_UploadClient { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadClient_UploadClient_ClientVersion_ClientVersion : IUploadClient_UploadClient_ClientVersion { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadClient_UploadClient_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDuplicatedTagError : IError { /// @@ -31169,12 +32225,14 @@ public partial interface IDuplicatedTagError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateClientVersionResult : global::System.IEquatable, IValidateClientVersionResult { public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient validateClient) @@ -31235,7 +32293,8 @@ public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) @@ -31310,7 +32369,8 @@ public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -31380,7 +32440,8 @@ public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) @@ -31444,7 +32505,8 @@ public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -31511,45 +32573,53 @@ public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateClientVersionResult { public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient ValidateClient { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateClientVersion_ValidateClient { public global::System.String? Id { get; } public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateClientVersion_ValidateClient_ValidateClientPayload : IValidateClientVersion_ValidateClient { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateClientVersion_ValidateClient_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionValidationUpdatedResult : global::System.IEquatable, IOnClientVersionValidationUpdatedResult { public OnClientVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate onClientVersionValidationUpdate) @@ -31610,7 +32680,8 @@ public OnClientVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -31684,7 +32755,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -31751,7 +32823,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress { public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -31818,7 +32891,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Operatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress { public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -31885,7 +32959,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Validati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError { 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) @@ -31960,7 +33035,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -32027,7 +33103,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError() @@ -32084,7 +33161,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_R } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -32151,7 +33229,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_U } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(global::System.String id, global::System.String name) @@ -32215,7 +33294,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -32293,7 +33373,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) @@ -32378,7 +33459,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -32442,95 +33524,112 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdatedResult { public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate OnClientVersionValidationUpdate { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IClientVersionValidationFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IClientVersionValidationSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IValidationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -32539,12 +33638,14 @@ public partial interface IOnClientVersionValidationUpdated_OnClientVersionValida public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -32553,24 +33654,28 @@ public partial interface IOnClientVersionValidationUpdated_OnClientVersionValida public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateEnvironmentCommandMutationResult : global::System.IEquatable, ICreateEnvironmentCommandMutationResult { public CreateEnvironmentCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges pushWorkspaceChanges) @@ -32631,7 +33736,8 @@ public CreateEnvironmentCommandMutationResult(global::ChilliCream.Nitro.CommandL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(global::System.Collections.Generic.IReadOnlyList? changes, global::System.Collections.Generic.IReadOnlyList? errors) @@ -32709,7 +33815,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChange } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -32784,7 +33891,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceCh } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(global::System.String message) @@ -32845,7 +33953,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_Unauthorized } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(global::System.String message) @@ -32906,7 +34015,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStruct } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(global::System.String message) @@ -32967,7 +34077,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Chang } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(global::System.String message) @@ -33028,7 +34139,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(global::System.String message) @@ -33089,7 +34201,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(global::System.String message) @@ -33150,7 +34263,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Ident } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(global::System.String message) @@ -33211,7 +34325,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Unexp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(global::System.String message) @@ -33272,7 +34387,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Works } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument() @@ -33329,7 +34445,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiD } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api() @@ -33386,7 +34503,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument() @@ -33443,7 +34561,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace) @@ -33514,7 +34633,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Envi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(global::System.String name) @@ -33575,25 +34695,29 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : ICreateEnvironmentCommandMutation_PushWorkspaceChanges { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -33601,82 +34725,98 @@ public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_ public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -33684,28 +34824,33 @@ public partial interface IEnvironmentDetailPrompt_Environment public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutation_Environment : IEnvironmentDetailPrompt_Environment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListEnvironmentCommandQueryResult : global::System.IEquatable, IListEnvironmentCommandQueryResult { public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? workspaceById) @@ -33770,7 +34915,8 @@ public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? environments) @@ -33835,10 +34981,11 @@ 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", "15.1.8.0")] + [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) @@ -33915,10 +35062,11 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnec } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node node) @@ -33988,10 +35136,11 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Environments } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -34081,7 +35230,8 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -34152,7 +35302,8 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -34213,27 +35364,31 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments { /// @@ -34246,18 +35401,20 @@ public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListEnvironmentCommand_EnvironmentEdge { /// @@ -34270,65 +35427,75 @@ public partial interface IListEnvironmentCommand_EnvironmentEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo : IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListEnvironmentCommand_Environment : IEnvironmentDetailPrompt_Environment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node : IListEnvironmentCommand_Environment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowEnvironmentCommandQueryResult : global::System.IEquatable, IShowEnvironmentCommandQueryResult { public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? node) @@ -34396,7 +35563,8 @@ public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Api() @@ -34453,7 +35621,8 @@ public ShowEnvironmentCommandQuery_Node_Api() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_ApiDocument() @@ -34510,7 +35679,8 @@ public ShowEnvironmentCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_ApiKey() @@ -34567,7 +35737,8 @@ public ShowEnvironmentCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Client() @@ -34624,7 +35795,8 @@ public ShowEnvironmentCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_ClientChangeLog() @@ -34681,7 +35853,8 @@ public ShowEnvironmentCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_ClientDeployment() @@ -34738,7 +35911,8 @@ public ShowEnvironmentCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_ClientVersion() @@ -34795,7 +35969,8 @@ public ShowEnvironmentCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() @@ -34852,7 +36027,8 @@ public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace) @@ -34923,7 +36099,8 @@ public ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() @@ -34980,7 +36157,8 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() @@ -35037,7 +36215,8 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -35094,7 +36273,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition() @@ -35151,7 +36331,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -35208,7 +36389,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition() @@ -35265,7 +36447,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -35322,7 +36505,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -35379,7 +36563,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -35436,7 +36621,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -35493,7 +36679,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -35550,7 +36737,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -35607,7 +36795,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -35664,7 +36853,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -35721,7 +36911,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -35778,7 +36969,8 @@ public ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Group() @@ -35835,7 +37027,8 @@ public ShowEnvironmentCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_McpFeatureCollection() @@ -35892,7 +37085,8 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -35949,7 +37143,8 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment() @@ -36006,7 +37201,8 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion() @@ -36063,7 +37259,8 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_OpenApiCollection() @@ -36120,7 +37317,8 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog() @@ -36177,7 +37375,8 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment() @@ -36234,7 +37433,8 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() @@ -36291,7 +37491,8 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Organization() @@ -36348,7 +37549,8 @@ public ShowEnvironmentCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_OrganizationMember() @@ -36405,7 +37607,8 @@ public ShowEnvironmentCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_SchemaChangeLog() @@ -36462,7 +37665,8 @@ public ShowEnvironmentCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_SchemaDeployment() @@ -36519,7 +37723,8 @@ public ShowEnvironmentCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Stage() @@ -36576,7 +37781,8 @@ public ShowEnvironmentCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_User() @@ -36633,7 +37839,8 @@ public ShowEnvironmentCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Workspace() @@ -36690,7 +37897,8 @@ public ShowEnvironmentCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_WorkspaceDocument() @@ -36747,7 +37955,8 @@ public ShowEnvironmentCommandQuery_Node_WorkspaceDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.String name) @@ -36808,7 +38017,8 @@ public ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.Strin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQueryResult { /// @@ -36817,231 +38027,276 @@ public partial interface IShowEnvironmentCommandQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Api : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_ApiDocument : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_ApiKey : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Client : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_ClientChangeLog : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_ClientDeployment : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_ClientVersion : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Environment : IShowEnvironmentCommandQuery_Node, IEnvironmentDetailPrompt_Environment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Group : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollection : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollection : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Organization : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_OrganizationMember : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_SchemaChangeLog : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_SchemaDeployment : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Stage : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_User : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Workspace : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_WorkspaceDocument : IShowEnvironmentCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class FetchConfigurationResult : global::System.IEquatable, IFetchConfigurationResult { public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? fusionConfigurationByApiId) @@ -37106,7 +38361,8 @@ public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global::System.String downloadUrl, global::System.String tag) @@ -37170,25 +38426,29 @@ public FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IFetchConfiguration_FusionConfigurationByApiId_FusionConfiguration : IFetchConfiguration_FusionConfigurationByApiId { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadFusionSubgraphResult : global::System.IEquatable, IUploadFusionSubgraphResult { public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph uploadFusionSubgraph) @@ -37249,7 +38509,8 @@ public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? fusionSubgraphVersion, global::System.Collections.Generic.IReadOnlyList? errors) @@ -37324,7 +38585,8 @@ public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion(global::System.String id) @@ -37385,7 +38647,8 @@ public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError(global::System.String message) @@ -37446,7 +38709,8 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchem } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global::System.String message) @@ -37507,7 +38771,8 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -37574,7 +38839,8 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -37641,7 +38907,8 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) @@ -37708,72 +38975,85 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError(globa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload : IUploadFusionSubgraph_UploadFusionSubgraph { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion : IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IInvalidFusionSourceSchemaArchiveError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -37834,7 +39114,8 @@ public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList? errors) @@ -37909,7 +39190,8 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Crea } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection(global::System.String name, global::System.String id) @@ -37973,7 +39255,8 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError { public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) @@ -38043,7 +39326,8 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation { public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) @@ -38110,62 +39394,73 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutation_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection : ICreateMcpFeatureCollectionCommandMutation_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutationResult { public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById deleteMcpFeatureCollectionById) @@ -38226,7 +39521,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.N } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList? errors) @@ -38301,7 +39597,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection { public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection(global::System.String name, global::System.String id) @@ -38365,7 +39662,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError { public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError(global::System.String message, global::System.String mcpFeatureCollectionId) @@ -38429,7 +39727,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) @@ -38496,61 +39795,72 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection : IDeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQueryResult : global::System.IEquatable, IListMcpFeatureCollectionCommandQueryResult { public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? node) @@ -38618,7 +39928,8 @@ public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? mcpFeatureCollections) @@ -38683,7 +39994,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() @@ -38740,7 +40052,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_ApiKey() @@ -38797,7 +40110,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_Client() @@ -38854,7 +40168,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog() @@ -38911,7 +40226,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment() @@ -38968,7 +40284,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_ClientVersion() @@ -39025,7 +40342,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics() @@ -39082,7 +40400,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_Environment() @@ -39139,7 +40458,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog() @@ -39196,7 +40516,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment() @@ -39253,7 +40574,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -39310,7 +40632,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinit } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition() @@ -39367,7 +40690,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -39424,7 +40748,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition() @@ -39481,7 +40806,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -39538,7 +40864,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefiniti } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -39595,7 +40922,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinitio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -39652,7 +40980,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -39709,7 +41038,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -39766,7 +41096,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -39823,7 +41154,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -39880,7 +41212,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -39937,7 +41270,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -39994,7 +41328,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_Group() @@ -40051,7 +41386,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection() @@ -40108,7 +41444,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -40165,7 +41502,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment() @@ -40222,7 +41560,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion() @@ -40279,7 +41618,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection() @@ -40336,7 +41676,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog() @@ -40393,7 +41734,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment() @@ -40450,7 +41792,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() @@ -40507,7 +41850,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_Organization() @@ -40564,7 +41908,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember() @@ -40621,7 +41966,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() @@ -40678,7 +42024,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() @@ -40735,7 +42082,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQuery_Node_Stage : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Stage { public ListMcpFeatureCollectionCommandQuery_Node_Stage() @@ -40792,7 +42140,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQuery_Node_User : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_User { public ListMcpFeatureCollectionCommandQuery_Node_User() @@ -40849,7 +42198,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQuery_Node_Workspace : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Workspace { public ListMcpFeatureCollectionCommandQuery_Node_Workspace() @@ -40906,7 +42256,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument() @@ -40963,10 +42314,11 @@ public ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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) @@ -41043,10 +42395,11 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFea } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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) @@ -41116,10 +42469,11 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Api } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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) @@ -41209,7 +42563,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection(global::System.String id, global::System.String name) @@ -41273,7 +42628,8 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Nod } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQueryResult { /// @@ -41282,224 +42638,267 @@ public partial interface IListMcpFeatureCollectionCommandQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiDocument : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiKey : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Client : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientDeployment : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientVersion : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Environment : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Group : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Organization : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_OrganizationMember : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Stage : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_User : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Workspace : IListMcpFeatureCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections { /// @@ -41512,18 +42911,20 @@ public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCo 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge { /// @@ -41536,54 +42937,62 @@ public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollect 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node : IListMcpFeatureCollectionCommandQuery_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutationResult { public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection publishMcpFeatureCollection) @@ -41644,7 +43053,8 @@ public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) @@ -41719,7 +43129,8 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Pu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -41789,7 +43200,8 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) @@ -41853,7 +43265,8 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -41920,7 +43333,8 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -41987,57 +43401,67 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscriptionResult : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscriptionResult { public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate onMcpFeatureCollectionVersionPublishingUpdate) @@ -42098,7 +43522,8 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -42172,7 +43597,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -42239,7 +43665,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -42306,7 +43733,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -42373,7 +43801,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) @@ -42446,7 +43875,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) @@ -42516,7 +43946,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -42590,7 +44021,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -42657,7 +44089,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -42722,7 +44155,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -42789,7 +44223,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError() @@ -42846,7 +44281,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError { public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -42913,7 +44349,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment { public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -42978,7 +44415,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment { public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -43043,7 +44481,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -43108,7 +44547,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -43173,7 +44613,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -43238,7 +44679,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -43310,7 +44752,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -43385,7 +44828,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -43460,7 +44904,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -43528,7 +44973,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -43602,7 +45048,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -43667,7 +45114,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -43732,7 +45180,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -43797,7 +45246,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -43862,7 +45312,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -43937,7 +45388,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -44005,7 +45457,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) @@ -44072,7 +45525,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -44148,7 +45602,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -44222,7 +45677,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -44287,7 +45743,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -44352,7 +45809,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -44416,7 +45874,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -44484,7 +45943,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -44552,7 +46012,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) @@ -44616,7 +46077,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -44694,7 +46156,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -44771,7 +46234,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -44848,7 +46312,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -44925,7 +46390,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45002,7 +46468,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45079,7 +46546,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45156,7 +46624,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -45226,7 +46695,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -45293,7 +46763,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -45363,7 +46834,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45440,7 +46912,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -45508,7 +46981,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -45580,7 +47054,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -45652,7 +47127,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45737,7 +47213,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -45798,7 +47275,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45883,7 +47361,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -45959,7 +47438,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46039,7 +47519,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46115,7 +47596,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46196,7 +47678,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46266,7 +47749,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46336,7 +47820,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46417,7 +47902,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -46487,7 +47973,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46564,7 +48051,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -46634,7 +48122,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46715,7 +48204,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46791,7 +48281,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46867,7 +48358,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -46947,7 +48439,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47028,7 +48521,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47104,7 +48598,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47180,7 +48675,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -47250,7 +48746,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -47320,7 +48817,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47400,7 +48898,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -47470,7 +48969,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -47540,7 +49040,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47621,7 +49122,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47697,7 +49199,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47773,7 +49276,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -47843,7 +49347,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -47913,7 +49418,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -47993,7 +49499,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -48074,7 +49581,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -48155,7 +49663,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -48225,7 +49734,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -48295,7 +49805,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -48359,7 +49870,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -48430,7 +49942,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -48498,7 +50011,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -48562,7 +50076,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -48626,7 +50141,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -48700,7 +50216,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -48781,7 +50298,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -48854,7 +50372,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -48922,7 +50441,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49003,7 +50523,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -49071,7 +50592,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49152,7 +50674,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49225,7 +50748,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49301,7 +50825,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49381,7 +50906,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49457,7 +50983,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -49525,7 +51052,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49606,7 +51134,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49679,7 +51208,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49764,7 +51294,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -49825,7 +51356,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -49899,7 +51431,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -49980,7 +51513,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -50053,7 +51587,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -50117,286 +51652,339 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscriptionResult { public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate OnMcpFeatureCollectionVersionPublishingUpdate { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IMcpFeatureCollectionVersionPublishFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IMcpFeatureCollectionVersionPublishSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskApproved { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskIsQueued { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskIsReady { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IWaitForApproval { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -50405,118 +51993,140 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -50525,408 +52135,485 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutationResult { public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection uploadMcpFeatureCollection) @@ -50987,7 +52674,8 @@ public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? mcpFeatureCollectionVersion, global::System.Collections.Generic.IReadOnlyList? errors) @@ -51062,7 +52750,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Uplo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion(global::System.String id) @@ -51123,7 +52812,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) @@ -51187,7 +52877,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError { public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -51254,7 +52945,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation { public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -51321,7 +53013,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError { public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) @@ -51388,7 +53081,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError(global::System.String message) @@ -51449,72 +53143,85 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IInvalidMcpFeatureCollectionArchiveError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutationResult { public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection validateMcpFeatureCollection) @@ -51575,7 +53282,8 @@ public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nit } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) @@ -51650,7 +53358,8 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -51720,7 +53429,8 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) @@ -51784,7 +53494,8 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -51851,45 +53562,53 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandSubscriptionResult : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscriptionResult { public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate onMcpFeatureCollectionVersionValidationUpdate) @@ -51950,7 +53669,8 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -52024,7 +53744,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -52091,7 +53812,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -52158,7 +53880,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -52225,7 +53948,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError(global::System.String message) @@ -52286,7 +54010,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -52351,7 +54076,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -52418,7 +54144,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError() @@ -52475,7 +54202,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -52542,7 +54270,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -52614,7 +54343,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -52678,7 +54408,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -52746,7 +54477,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -52814,7 +54546,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -52899,7 +54632,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -52960,7 +54694,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -53024,157 +54759,185 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IMcpFeatureCollectionVersionValidationFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IMcpFeatureCollectionVersionValidationSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IValidationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IMcpFeatureCollectionValidationArchiveError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMockSchemaResult : global::System.IEquatable, ICreateMockSchemaResult { public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema createMockSchema) @@ -53235,7 +54998,8 @@ public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICrea } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? mockSchema, global::System.Collections.Generic.IReadOnlyList? errors) @@ -53310,7 +55074,8 @@ public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliC } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -53392,7 +55157,8 @@ public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -53462,7 +55228,8 @@ public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(global::System.String __typename, global::System.String message, global::System.String name) @@ -53532,7 +55299,8 @@ public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() @@ -53589,7 +55357,8 @@ public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_Errors_ValidationError() @@ -53646,7 +55415,8 @@ public CreateMockSchema_CreateMockSchema_Errors_ValidationError() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::System.String username) @@ -53707,7 +55477,8 @@ public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global::System.String username) @@ -53768,25 +55539,29 @@ public CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMockSchema_CreateMockSchema_CreateMockSchemaPayload : ICreateMockSchema_CreateMockSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IMockSchemaDetailPrompt { public global::System.String Id { get; } @@ -53799,27 +55574,32 @@ public partial interface IMockSchemaDetailPrompt public global::System.String Url { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMockSchema_CreateMockSchema_MockSchema : IMockSchemaDetailPrompt { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_MockSchema : ICreateMockSchema_CreateMockSchema_MockSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMockSchema_CreateMockSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IMockSchemaNonUniqueNameError : IError { /// @@ -53829,44 +55609,52 @@ public partial interface IMockSchemaNonUniqueNameError : IError public global::System.String Name { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation : ICreateMockSchema_CreateMockSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMockSchema_CreateMockSchema_Errors_ValidationError : ICreateMockSchema_CreateMockSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMockCommandQueryResult : global::System.IEquatable, IListMockCommandQueryResult { public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? apiById) @@ -53931,7 +55719,8 @@ public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? mockSchemas) @@ -53996,10 +55785,11 @@ 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection { public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo pageInfo) @@ -54076,10 +55866,11 @@ public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::Sy } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node node) @@ -54149,10 +55940,11 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::Sy } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -54242,7 +56034,8 @@ public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -54324,7 +56117,8 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(global::System.String username) @@ -54385,7 +56179,8 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(global::System.String username) @@ -54446,27 +56241,31 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMockCommandQuery_ApiById_MockSchemas { /// @@ -54479,18 +56278,20 @@ public partial interface IListMockCommandQuery_ApiById_MockSchemas 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMockCommand_MockEdge { /// @@ -54503,76 +56304,88 @@ public partial interface IListMockCommand_MockEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo : IListMockCommandQuery_ApiById_MockSchemas_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMockCommand_Mock : IMockSchemaDetailPrompt { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node : IListMockCommand_Mock { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateMockSchemaResult : global::System.IEquatable, IUpdateMockSchemaResult { public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema updateMockSchema) @@ -54633,7 +56446,8 @@ public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpda } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? mockSchema, global::System.Collections.Generic.IReadOnlyList? errors) @@ -54708,7 +56522,8 @@ public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliC } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -54790,7 +56605,8 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(global::System.String __typename, global::System.String message, global::System.String name) @@ -54860,7 +56676,8 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global::System.String __typename, global::System.String message) @@ -54927,7 +56744,8 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() @@ -54984,7 +56802,8 @@ public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() @@ -55041,7 +56860,8 @@ public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::System.String username) @@ -55102,7 +56922,8 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global::System.String username) @@ -55163,45 +56984,53 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload : IUpdateMockSchema_UpdateMockSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema : IMockSchemaDetailPrompt { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema : IUpdateMockSchema_UpdateMockSchema_MockSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchema_UpdateMockSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IMockSchemaNotFoundError : IError { /// @@ -55210,44 +57039,52 @@ public partial interface IMockSchemaNotFoundError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation : IUpdateMockSchema_UpdateMockSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_ValidationError : IUpdateMockSchema_UpdateMockSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -55308,7 +57145,8 @@ public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList? errors) @@ -55383,7 +57221,8 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpen } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection(global::System.String name, global::System.String id) @@ -55447,7 +57286,8 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCol } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) @@ -55517,7 +57357,8 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Api } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) @@ -55584,62 +57425,73 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Una } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutation_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection : ICreateOpenApiCollectionCommandMutation_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteOpenApiCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutationResult { public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById deleteOpenApiCollectionById) @@ -55700,7 +57552,8 @@ public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList? errors) @@ -55775,7 +57628,8 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_De } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection(global::System.String name, global::System.String id) @@ -55839,7 +57693,8 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Op } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError(global::System.String message, global::System.String openApiCollectionId) @@ -55903,7 +57758,8 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) @@ -55970,61 +57826,72 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection : IDeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQueryResult : global::System.IEquatable, IListOpenApiCollectionCommandQueryResult { public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? node) @@ -56092,7 +57959,8 @@ public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.Command } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? openApiCollections) @@ -56157,7 +58025,8 @@ public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_ApiDocument() @@ -56214,7 +58083,8 @@ public ListOpenApiCollectionCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_ApiKey() @@ -56271,7 +58141,8 @@ public ListOpenApiCollectionCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Client() @@ -56328,7 +58199,8 @@ public ListOpenApiCollectionCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() @@ -56385,7 +58257,8 @@ public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_ClientDeployment() @@ -56442,7 +58315,8 @@ public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_ClientVersion() @@ -56499,7 +58373,8 @@ public ListOpenApiCollectionCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() @@ -56556,7 +58431,8 @@ public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Environment() @@ -56613,7 +58489,8 @@ public ListOpenApiCollectionCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() @@ -56670,7 +58547,8 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() @@ -56727,7 +58605,8 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -56784,7 +58663,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() @@ -56841,7 +58721,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -56898,7 +58779,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() @@ -56955,7 +58837,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -57012,7 +58895,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -57069,7 +58953,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -57126,7 +59011,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -57183,7 +59069,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -57240,7 +59127,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -57297,7 +59185,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefiniti } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -57354,7 +59243,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -57411,7 +59301,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -57468,7 +59359,8 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Group() @@ -57525,7 +59417,8 @@ public ListOpenApiCollectionCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection { public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() @@ -57582,7 +59475,8 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog { public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -57639,7 +59533,8 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment { public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() @@ -57696,7 +59591,8 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion { public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() @@ -57753,7 +59649,8 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollection { public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() @@ -57810,7 +59707,8 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog { public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() @@ -57867,7 +59765,8 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment { public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() @@ -57924,7 +59823,8 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() @@ -57981,7 +59881,8 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Organization() @@ -58038,7 +59939,8 @@ public ListOpenApiCollectionCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_OrganizationMember() @@ -58095,7 +59997,8 @@ public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() @@ -58152,7 +60055,8 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() @@ -58209,7 +60113,8 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Stage() @@ -58266,7 +60171,8 @@ public ListOpenApiCollectionCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_User() @@ -58323,7 +60229,8 @@ public ListOpenApiCollectionCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_Workspace() @@ -58380,7 +60287,8 @@ public ListOpenApiCollectionCommandQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() @@ -58437,10 +60345,11 @@ public ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection { public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo pageInfo) @@ -58517,10 +60426,11 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiColle } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node node) @@ -58590,10 +60500,11 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenAp } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -58683,7 +60594,8 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageIn } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection(global::System.String id, global::System.String name) @@ -58747,7 +60659,8 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_Open } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQueryResult { /// @@ -58756,224 +60669,267 @@ public partial interface IListOpenApiCollectionCommandQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_ApiDocument : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_ApiKey : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Client : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_ClientChangeLog : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_ClientDeployment : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_ClientVersion : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Environment : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Group : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollection : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Organization : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OrganizationMember : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaChangeLog : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaDeployment : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Stage : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_User : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Workspace : IListOpenApiCollectionCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections { /// @@ -58986,18 +60942,20 @@ public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollecti 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollectionEdge { /// @@ -59010,54 +60968,62 @@ public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollectionEdg 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node : IListOpenApiCollectionCommandQuery_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -59118,7 +61084,8 @@ public PublishOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -59193,7 +61160,8 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishO } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -59263,7 +61231,8 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) @@ -59327,7 +61296,8 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -59394,7 +61364,8 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_U } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String openApiCollectionId) @@ -59461,57 +61432,67 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscriptionResult : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscriptionResult { public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate onOpenApiCollectionVersionPublishingUpdate) @@ -59572,7 +61553,8 @@ public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nit } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -59646,7 +61628,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -59713,7 +61696,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -59780,7 +61764,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -59847,7 +61832,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) @@ -59920,7 +61906,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) @@ -59990,7 +61977,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) @@ -60064,7 +62052,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -60131,7 +62120,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -60196,7 +62186,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -60263,7 +62254,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError() @@ -60320,7 +62312,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -60387,7 +62380,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -60452,7 +62446,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -60517,7 +62512,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -60582,7 +62578,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment { public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -60647,7 +62644,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -60712,7 +62710,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -60784,7 +62783,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -60859,7 +62859,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -60934,7 +62935,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -61002,7 +63004,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -61076,7 +63079,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -61141,7 +63145,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -61206,7 +63211,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -61271,7 +63277,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -61336,7 +63343,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -61411,7 +63419,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -61479,7 +63488,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) @@ -61546,7 +63556,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -61622,7 +63633,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -61696,7 +63708,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -61761,7 +63774,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -61826,7 +63840,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -61890,7 +63905,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -61961,7 +63977,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -62029,7 +64046,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) @@ -62093,7 +64111,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62171,7 +64190,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62248,7 +64268,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62325,7 +64346,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62402,7 +64424,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62479,7 +64502,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62556,7 +64580,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62633,7 +64658,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -62703,7 +64729,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -62770,7 +64797,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -62840,7 +64868,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -62917,7 +64946,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -62985,7 +65015,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -63057,7 +65088,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -63129,7 +65161,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63214,7 +65247,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -63275,7 +65309,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63360,7 +65395,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63436,7 +65472,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63516,7 +65553,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63592,7 +65630,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63673,7 +65712,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63743,7 +65783,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63813,7 +65854,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -63894,7 +65936,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -63964,7 +66007,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64041,7 +66085,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -64111,7 +66156,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64192,7 +66238,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64268,7 +66315,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64344,7 +66392,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64424,7 +66473,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64505,7 +66555,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64581,7 +66632,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64657,7 +66709,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -64727,7 +66780,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -64797,7 +66851,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -64877,7 +66932,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -64947,7 +67003,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -65017,7 +67074,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -65098,7 +67156,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -65174,7 +67233,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -65250,7 +67310,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -65320,7 +67381,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -65390,7 +67452,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -65470,7 +67533,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -65551,7 +67615,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -65632,7 +67697,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -65702,7 +67768,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -65772,7 +67839,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -65836,7 +67904,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -65904,7 +67973,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -65972,7 +68042,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -66036,7 +68107,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -66100,7 +68172,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -66174,7 +68247,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66255,7 +68329,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66328,7 +68403,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -66396,7 +68472,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66477,7 +68554,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -66545,7 +68623,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66626,7 +68705,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66699,7 +68779,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66775,7 +68856,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66855,7 +68937,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -66931,7 +69014,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -66999,7 +69083,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -67080,7 +69165,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -67153,7 +69239,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -67238,7 +69325,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -67299,7 +69387,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -67373,7 +69462,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -67454,7 +69544,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -67527,7 +69618,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -67591,287 +69683,340 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscriptionResult { public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate OnOpenApiCollectionVersionPublishingUpdate { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOpenApiCollectionVersionPublishFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOpenApiCollectionVersionPublishSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskApproved { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskIsQueued { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskIsReady { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IWaitForApproval { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IConcurrentOperationError { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -67880,118 +70025,140 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -68000,407 +70167,484 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -68461,7 +70705,8 @@ public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? openApiCollectionVersion, global::System.Collections.Generic.IReadOnlyList? errors) @@ -68536,7 +70781,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpen } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion(global::System.String id) @@ -68597,7 +70843,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCol } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) @@ -68661,7 +70908,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Ope } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -68728,7 +70976,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Con } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -68795,7 +71044,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Una } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) @@ -68862,7 +71112,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Dup } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError(global::System.String message) @@ -68923,72 +71174,85 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Inv } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IInvalidOpenApiCollectionArchiveError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandMutationResult : global::System.IEquatable, IValidateOpenApiCollectionCommandMutationResult { public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection validateOpenApiCollection) @@ -69049,7 +71313,8 @@ public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) @@ -69124,7 +71389,8 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Valida } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -69194,7 +71460,8 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) @@ -69258,7 +71525,8 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -69325,45 +71593,53 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandSubscriptionResult : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscriptionResult { public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate onOpenApiCollectionVersionValidationUpdate) @@ -69424,7 +71700,8 @@ public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Ni } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -69498,7 +71775,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -69565,7 +71843,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -69632,7 +71911,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -69699,7 +71979,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError(global::System.String message) @@ -69760,7 +72041,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -69825,7 +72107,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -69892,7 +72175,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError() @@ -69949,7 +72233,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -70016,7 +72301,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -70088,7 +72374,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -70152,7 +72439,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -70223,7 +72511,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -70291,7 +72580,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -70376,7 +72666,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -70437,7 +72728,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -70501,158 +72793,186 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOpenApiCollectionVersionValidationFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOpenApiCollectionVersionValidationSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IValidationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOpenApiCollectionValidationArchiveError { public global::System.String Message { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -70713,7 +73033,8 @@ public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? result, global::System.Collections.Generic.IReadOnlyList? errors) @@ -70788,7 +73109,8 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Create } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token token, global::System.String secret) @@ -70852,7 +73174,8 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError(global::System.String message) @@ -70913,7 +73236,8 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -70980,7 +73304,8 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset createdAt, global::System.DateTimeOffset expiresAt) @@ -71050,52 +73375,61 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -71104,22 +73438,26 @@ public partial interface IPersonalAccessTokenDetailPrompt_PersonalAccessToken public global::System.DateTimeOffset ExpiresAt { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreatePersonalAccessTokenCommandMutation_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token : ICreatePersonalAccessTokenCommandMutation_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListPersonalAccessTokenCommandQueryResult : global::System.IEquatable, IListPersonalAccessTokenCommandQueryResult { public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? me) @@ -71184,7 +73522,8 @@ public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.Comma } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? personalAccessTokens) @@ -71249,10 +73588,11 @@ 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection { public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo pageInfo) @@ -71329,10 +73669,11 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAcces } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node node) @@ -71402,10 +73743,11 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Persona } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -71495,7 +73837,8 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_Page } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset expiresAt, global::System.DateTimeOffset createdAt) @@ -71565,27 +73908,31 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_Pe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens { /// @@ -71598,18 +73945,20 @@ public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessT 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListPersonalAccessTokenCommand_PersonalAccessTokenEdge { /// @@ -71622,54 +73971,62 @@ public partial interface IListPersonalAccessTokenCommand_PersonalAccessTokenEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListPersonalAccessTokenCommand_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node : IListPersonalAccessTokenCommand_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class RevokePersonalAccessTokenCommandMutationResult : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutationResult { public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken revokePersonalAccessToken) @@ -71730,7 +74087,8 @@ public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? personalAccessToken, global::System.Collections.Generic.IReadOnlyList? errors) @@ -71805,7 +74163,8 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Revoke } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset createdAt, global::System.DateTimeOffset expiresAt) @@ -71875,7 +74234,8 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Person } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation(global::System.String message) @@ -71936,7 +74296,8 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError(global::System.String __typename, global::System.String message) @@ -72003,50 +74364,59 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRevokePersonalAccessTokenCommand_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken : IRevokePersonalAccessTokenCommand_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPersonalAccessTokenNotFoundError : IError { /// @@ -72055,12 +74425,14 @@ public partial interface IPersonalAccessTokenNotFoundError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -72121,7 +74493,8 @@ public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) @@ -72196,7 +74569,8 @@ public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -72266,7 +74640,8 @@ public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::Syst } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -72336,7 +74711,8 @@ public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::System.String message, global::System.String apiId, global::System.String tag) @@ -72403,7 +74779,8 @@ public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::Sys } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -72470,57 +74847,67 @@ public PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishSchemaVersion_PublishSchema_PublishSchemaPayload : IPublishSchemaVersion_PublishSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishSchemaVersion_PublishSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionPublishUpdatedResult : global::System.IEquatable, IOnSchemaVersionPublishUpdatedResult { public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate onSchemaVersionPublishingUpdate) @@ -72581,7 +74968,8 @@ public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -72648,7 +75036,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationIn } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -72715,7 +75104,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) @@ -72788,7 +75178,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) @@ -72858,7 +75249,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -72932,7 +75324,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -72999,7 +75392,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) @@ -73073,7 +75467,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForAppr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -73140,7 +75535,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Conc } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -73214,7 +75610,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Inva } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -73279,7 +75676,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -73344,7 +75742,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Open } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) @@ -73411,7 +75810,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Oper } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) @@ -73486,7 +75886,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Pers } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -73553,7 +75954,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Proc } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError() @@ -73610,7 +76012,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Read } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) @@ -73681,7 +76084,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) @@ -73757,7 +76161,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -73824,7 +76229,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Unex } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -73889,7 +76295,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -73954,7 +76361,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -74019,7 +76427,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -74084,7 +76493,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -74149,7 +76559,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -74217,7 +76628,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Erro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -74289,7 +76701,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -74361,7 +76774,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client(global::System.String id, global::System.String name) @@ -74425,7 +76839,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74503,7 +76918,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74580,7 +76996,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74657,7 +77074,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74734,7 +77152,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74811,7 +77230,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74888,7 +77308,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -74965,7 +77386,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -75035,7 +77457,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -75102,7 +77525,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -75172,7 +77596,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -75249,7 +77674,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -75324,7 +77750,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -75399,7 +77826,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -75467,7 +77895,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -75541,7 +77970,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -75606,7 +78036,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -75671,7 +78102,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -75736,7 +78168,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -75801,7 +78234,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -75876,7 +78310,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -75944,7 +78379,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) @@ -76011,7 +78447,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -76087,7 +78524,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -76161,7 +78599,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -76226,7 +78665,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -76291,7 +78731,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -76355,7 +78796,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -76423,7 +78865,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -76491,7 +78934,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -76555,7 +78999,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -76626,7 +79071,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -76694,7 +79140,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) @@ -76779,7 +79226,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -76855,7 +79303,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -76935,7 +79384,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77011,7 +79461,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77092,7 +79543,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -77162,7 +79614,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -77232,7 +79685,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77313,7 +79767,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -77383,7 +79838,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77460,7 +79916,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -77530,7 +79987,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77611,7 +80069,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77687,7 +80146,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77763,7 +80223,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77843,7 +80304,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -77924,7 +80386,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78000,7 +80463,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78076,7 +80540,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -78146,7 +80611,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -78216,7 +80682,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78296,7 +80763,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -78366,7 +80834,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -78436,7 +80905,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78517,7 +80987,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78593,7 +81064,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78669,7 +81141,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -78739,7 +81212,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -78809,7 +81283,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78889,7 +81364,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -78970,7 +81446,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79051,7 +81528,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -79121,7 +81599,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -79191,7 +81670,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) @@ -79255,7 +81735,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79333,7 +81814,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79410,7 +81892,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79487,7 +81970,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79564,7 +82048,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79641,7 +82126,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79718,7 +82204,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -79795,7 +82282,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -79865,7 +82353,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -79932,7 +82421,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -80002,7 +82492,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -80079,7 +82570,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -80147,7 +82639,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -80219,7 +82712,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -80291,7 +82785,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -80376,7 +82871,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -80437,7 +82933,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -80522,7 +83019,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -80583,7 +83081,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -80647,7 +83146,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -80721,7 +83221,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -80802,7 +83303,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -80875,7 +83377,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -80943,7 +83446,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -81024,7 +83528,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -81092,7 +83597,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -81173,7 +83679,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -81246,7 +83753,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -81322,7 +83830,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -81402,7 +83911,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -81478,7 +83988,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -81546,7 +84057,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -81627,7 +84139,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -81700,7 +84213,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -81776,7 +84290,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -81856,7 +84371,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -81932,7 +84448,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -82013,7 +84530,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82083,7 +84601,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82153,7 +84672,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82234,7 +84754,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -82304,7 +84825,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82381,7 +84903,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -82451,7 +84974,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82532,7 +85056,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82608,7 +85133,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82684,7 +85210,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82764,7 +85291,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82845,7 +85373,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82921,7 +85450,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -82997,7 +85527,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -83067,7 +85598,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -83137,7 +85669,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83217,7 +85750,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -83287,7 +85821,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -83357,7 +85892,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83438,7 +85974,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83514,7 +86051,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83590,7 +86128,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -83660,7 +86199,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -83730,7 +86270,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83810,7 +86351,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83891,7 +86433,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -83972,7 +86515,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -84042,7 +86586,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -84112,7 +86657,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -84176,7 +86722,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -84240,7 +86787,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -84314,7 +86862,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -84395,7 +86944,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -84468,39 +87018,46 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdatedResult { public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate OnSchemaVersionPublishingUpdate { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskApproved { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskIsQueued { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskIsReady { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISchemaVersionPublishFailed { /// @@ -84511,12 +87068,14 @@ public partial interface ISchemaVersionPublishFailed public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, ISchemaVersionPublishFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISchemaVersionPublishSuccess { /// @@ -84526,62 +87085,74 @@ public partial interface ISchemaVersionPublishSuccess public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, ISchemaVersionPublishSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IWaitForApproval { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISchemaVersionChangeViolationError { /// @@ -84591,105 +87162,123 @@ public partial interface ISchemaVersionChangeViolationError public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -84698,228 +87287,271 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 global::System.String HttpMethod { get; } public global::System.String Route { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -84928,226 +87560,269 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -85156,483 +87831,575 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -85693,7 +88460,8 @@ public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSc } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? schemaVersion, global::System.Collections.Generic.IReadOnlyList? errors) @@ -85768,7 +88536,8 @@ public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.String id) @@ -85829,7 +88598,8 @@ public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.Stri } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -85899,7 +88669,8 @@ public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String _ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) @@ -85966,7 +88737,8 @@ public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) @@ -86033,7 +88805,8 @@ public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -86100,61 +88873,72 @@ public UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadSchema_UploadSchema_UploadSchemaPayload : IUploadSchema_UploadSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadSchema_UploadSchema_SchemaVersion_SchemaVersion : IUploadSchema_UploadSchema_SchemaVersion { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadSchema_UploadSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateSchemaVersionResult : global::System.IEquatable, IValidateSchemaVersionResult { public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema validateSchema) @@ -86215,7 +88999,8 @@ public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -86290,7 +89075,8 @@ public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -86360,7 +89146,8 @@ public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::Sy } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::System.String message, global::System.String apiId, global::System.String tag) @@ -86427,7 +89214,8 @@ public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -86497,7 +89285,8 @@ public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::Syst } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -86564,50 +89353,59 @@ public ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload : IValidateSchemaVersion_ValidateSchema { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateSchemaVersion_ValidateSchema_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionValidationUpdatedResult : global::System.IEquatable, IOnSchemaVersionValidationUpdatedResult { public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate onSchemaVersionValidationUpdate) @@ -86668,7 +89466,8 @@ public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -86735,7 +89534,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Operatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) @@ -86809,7 +89609,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList changes) @@ -86883,7 +89684,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) @@ -86950,7 +89752,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Validati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -87024,7 +89827,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -87089,7 +89893,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_M } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -87154,7 +89959,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_O } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -87221,7 +90027,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_O } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) @@ -87296,7 +90103,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) @@ -87363,7 +90171,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError() @@ -87420,7 +90229,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_R } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) @@ -87491,7 +90301,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) @@ -87567,7 +90378,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) @@ -87634,7 +90446,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_U } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -87711,7 +90524,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -87788,7 +90602,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -87865,7 +90680,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -87942,7 +90758,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88019,7 +90836,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88096,7 +90914,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -88166,7 +90985,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -88233,7 +91053,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -88303,7 +91124,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88380,7 +91202,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -88448,7 +91271,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_E } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -88520,7 +91344,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -88592,7 +91417,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client(global::System.String id, global::System.String name) @@ -88656,7 +91482,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88734,7 +91561,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88811,7 +91639,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88888,7 +91717,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -88965,7 +91795,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89042,7 +91873,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89119,7 +91951,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89196,7 +92029,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -89266,7 +92100,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -89333,7 +92168,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -89403,7 +92239,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89480,7 +92317,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89556,7 +92394,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89636,7 +92475,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -89712,7 +92552,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) @@ -89793,7 +92634,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -89863,7 +92705,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -89933,7 +92776,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90014,7 +92858,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -90084,7 +92929,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90161,7 +93007,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -90231,7 +93078,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90312,7 +93160,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90388,7 +93237,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90464,7 +93314,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90544,7 +93395,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90625,7 +93477,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90701,7 +93554,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90777,7 +93631,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -90847,7 +93702,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -90917,7 +93773,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -90997,7 +93854,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -91067,7 +93925,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -91137,7 +93996,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -91218,7 +94078,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -91294,7 +94155,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -91370,7 +94232,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -91440,7 +94303,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -91510,7 +94374,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -91590,7 +94455,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -91671,7 +94537,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -91752,7 +94619,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -91822,7 +94690,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -91892,7 +94761,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -91956,7 +94826,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -92024,7 +94895,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -92092,7 +94964,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -92156,7 +95029,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -92227,7 +95101,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -92295,7 +95170,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) @@ -92380,7 +95256,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -92456,7 +95333,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -92536,7 +95414,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -92612,7 +95491,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -92693,7 +95573,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -92763,7 +95644,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -92833,7 +95715,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -92914,7 +95797,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -92984,7 +95868,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93061,7 +95946,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -93131,7 +96017,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93212,7 +96099,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93288,7 +96176,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93364,7 +96253,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93444,7 +96334,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93525,7 +96416,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93601,7 +96493,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93677,7 +96570,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -93747,7 +96641,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -93817,7 +96712,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -93897,7 +96793,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -93967,7 +96864,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -94037,7 +96935,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94118,7 +97017,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94194,7 +97094,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94270,7 +97171,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -94340,7 +97242,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -94410,7 +97313,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94490,7 +97394,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94571,7 +97476,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94652,7 +97558,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -94722,7 +97629,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -94792,7 +97700,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -94866,7 +97775,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -94947,7 +97857,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -95020,7 +97931,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -95088,7 +98000,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -95169,7 +98082,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -95237,7 +98151,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -95318,7 +98233,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -95391,7 +98307,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -95467,7 +98384,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -95547,7 +98465,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -95623,7 +98542,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -95691,7 +98611,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -95772,7 +98693,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -95845,7 +98767,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -95930,7 +98853,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -95991,7 +98915,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -96076,7 +99001,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -96137,7 +99063,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -96201,7 +99128,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -96275,7 +99203,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -96356,7 +99285,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -96429,7 +99359,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -96493,7 +99424,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -96557,211 +99489,250 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdatedResult { public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate OnSchemaVersionValidationUpdate { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, ISchemaVersionValidationFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, ISchemaVersionValidationSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, IValidationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors { public global::System.String Message { get; } public global::System.String? Code { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -96770,330 +99741,392 @@ public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValida public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -97102,392 +100135,467 @@ public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValida public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -97548,7 +100656,8 @@ public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateSt } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) @@ -97623,7 +100732,8 @@ public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IReadOnlyList stages) @@ -97688,7 +100798,8 @@ public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IRea } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -97758,7 +100869,8 @@ public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String _ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -97828,7 +100940,8 @@ public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList stages) @@ -97902,7 +101015,8 @@ public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_StageValidationError(global::System.String message, global::System.String __typename) @@ -97969,7 +101083,8 @@ public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.Stri } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, global::System.String name, global::System.String displayName, global::System.Collections.Generic.IReadOnlyList conditions) @@ -98043,7 +101158,8 @@ public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, glob } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -98118,7 +101234,8 @@ public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? afterStage) @@ -98183,7 +101300,8 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(globa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? version) @@ -98248,7 +101366,8 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client client, global::System.Collections.Generic.IReadOnlyList publishedVersions) @@ -98316,7 +101435,8 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient( } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global::System.String name) @@ -98377,7 +101497,8 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global:: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion(global::System.String tag) @@ -98438,7 +101559,8 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVer } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(global::System.String name) @@ -98499,7 +101621,8 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? version) @@ -98564,7 +101687,8 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion(global::System.String tag) @@ -98625,51 +101749,60 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateStages_UpdateStages_UpdateStagesPayload : IUpdateStages_UpdateStages { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateStages_UpdateStages_Api_Api : IUpdateStages_UpdateStages_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateStages_UpdateStages_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IStagesHavePublishedDependenciesError { /// @@ -98680,12 +101813,14 @@ public partial interface IStagesHavePublishedDependenciesError public global::System.Collections.Generic.IReadOnlyList Stages { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -98695,7 +101830,8 @@ public partial interface IUpdateStages_UpdateStages_Errors_StageValidationError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -98704,17 +101840,20 @@ public partial interface IStageDetailPrompt_Stage public global::System.Collections.Generic.IReadOnlyList Conditions { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateStages_UpdateStages_Api_Stages : IStageDetailPrompt_Stage { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -98722,111 +101861,131 @@ public partial interface IUpdateStages_UpdateStages_Errors_Stages public global::System.Collections.Generic.IReadOnlyList PublishedClients { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IStageCondition { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions : IStageCondition { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQueryResult : global::System.IEquatable, IListStagesQueryResult { public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? node) @@ -98894,7 +102053,8 @@ public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListS } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList stages) @@ -98959,7 +102119,8 @@ public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_ApiDocument() @@ -99016,7 +102177,8 @@ public ListStagesQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_ApiKey() @@ -99073,7 +102235,8 @@ public ListStagesQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Client() @@ -99130,7 +102293,8 @@ public ListStagesQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_ClientChangeLog() @@ -99187,7 +102351,8 @@ public ListStagesQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_ClientDeployment() @@ -99244,7 +102409,8 @@ public ListStagesQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_ClientVersion() @@ -99301,7 +102467,8 @@ public ListStagesQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_CoordinateClientUsageMetrics() @@ -99358,7 +102525,8 @@ public ListStagesQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Environment() @@ -99415,7 +102583,8 @@ public ListStagesQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_FusionConfigurationChangeLog() @@ -99472,7 +102641,8 @@ public ListStagesQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_FusionConfigurationDeployment() @@ -99529,7 +102699,8 @@ public ListStagesQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -99586,7 +102757,8 @@ public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLDirectiveDefinition() @@ -99643,7 +102815,8 @@ public ListStagesQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLEnumTypeDefinition() @@ -99700,7 +102873,8 @@ public ListStagesQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLEnumValueDefinition() @@ -99757,7 +102931,8 @@ public ListStagesQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() @@ -99814,7 +102989,8 @@ public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() @@ -99871,7 +103047,8 @@ public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -99928,7 +103105,8 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() @@ -99985,7 +103163,8 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() @@ -100042,7 +103221,8 @@ public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -100099,7 +103279,8 @@ public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLObjectFieldDefinition() @@ -100156,7 +103337,8 @@ public ListStagesQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLScalarTypeDefinition() @@ -100213,7 +103395,8 @@ public ListStagesQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_GraphQLUnionTypeDefinition() @@ -100270,7 +103453,8 @@ public ListStagesQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Group() @@ -100327,7 +103511,8 @@ public ListStagesQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_McpFeatureCollection() @@ -100384,7 +103569,8 @@ public ListStagesQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_McpFeatureCollectionChangeLog() @@ -100441,7 +103627,8 @@ public ListStagesQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_McpFeatureCollectionDeployment() @@ -100498,7 +103685,8 @@ public ListStagesQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_McpFeatureCollectionVersion() @@ -100555,7 +103743,8 @@ public ListStagesQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_OpenApiCollection() @@ -100612,7 +103801,8 @@ public ListStagesQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_OpenApiCollectionChangeLog() @@ -100669,7 +103859,8 @@ public ListStagesQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_OpenApiCollectionDeployment() @@ -100726,7 +103917,8 @@ public ListStagesQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_OpenApiCollectionVersion() @@ -100783,7 +103975,8 @@ public ListStagesQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Organization() @@ -100840,7 +104033,8 @@ public ListStagesQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_OrganizationMember() @@ -100897,7 +104091,8 @@ public ListStagesQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_SchemaChangeLog() @@ -100954,7 +104149,8 @@ public ListStagesQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_SchemaDeployment() @@ -101011,7 +104207,8 @@ public ListStagesQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Stage() @@ -101068,7 +104265,8 @@ public ListStagesQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_User() @@ -101125,7 +104323,8 @@ public ListStagesQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Workspace() @@ -101182,7 +104381,8 @@ public ListStagesQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_WorkspaceDocument() @@ -101239,7 +104439,8 @@ public ListStagesQuery_Node_WorkspaceDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Stages_Stage(global::System.String id, global::System.String name, global::System.String displayName, global::System.Collections.Generic.IReadOnlyList conditions) @@ -101313,7 +104514,8 @@ public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::Syste } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? afterStage) @@ -101378,7 +104580,8 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::Chilli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.String name) @@ -101439,7 +104642,8 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQueryResult { /// @@ -101448,252 +104652,301 @@ public partial interface IListStagesQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_ApiDocument : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_ApiKey : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Client : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_ClientChangeLog : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_ClientDeployment : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_ClientVersion : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_CoordinateClientUsageMetrics : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Environment : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_FusionConfigurationChangeLog : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_FusionConfigurationDeployment : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLDirectiveArgumentDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLDirectiveDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLEnumTypeDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLEnumValueDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLInputObjectFieldDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLInputObjectTypeDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLInterfaceFieldDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLInterfaceTypeDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLObjectFieldDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLScalarTypeDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_GraphQLUnionTypeDefinition : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Group : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_McpFeatureCollection : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_McpFeatureCollectionChangeLog : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_McpFeatureCollectionDeployment : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_McpFeatureCollectionVersion : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_OpenApiCollection : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_OpenApiCollectionChangeLog : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_OpenApiCollectionDeployment : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_OpenApiCollectionVersion : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Organization : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_OrganizationMember : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_SchemaChangeLog : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_SchemaDeployment : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Stage : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_User : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Workspace : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_WorkspaceDocument : IListStagesQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Stages : IStageDetailPrompt_Stage { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Stages_Stage : IListStagesQuery_Node_Stages { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Stages_Conditions : IStageCondition { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateWorkspaceCommandMutationResult : global::System.IEquatable, ICreateWorkspaceCommandMutationResult { public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace createWorkspace) @@ -101754,7 +105007,8 @@ public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? workspace, global::System.Collections.Generic.IReadOnlyList? errors) @@ -101829,7 +105083,8 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) @@ -101896,7 +105151,8 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation(global::System.String message) @@ -101957,7 +105213,8 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(global::System.String message) @@ -102018,25 +105275,29 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload : ICreateWorkspaceCommandMutation_CreateWorkspace { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -102044,34 +105305,40 @@ public partial interface IWorkspaceDetailPrompt_Workspace public global::System.Boolean Personal { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace : IWorkspaceDetailPrompt_Workspace { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace : ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -102136,7 +105403,8 @@ public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? workspaces) @@ -102201,10 +105469,11 @@ public ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection { public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo pageInfo) @@ -102281,10 +105550,11 @@ public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::Syst } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node node) @@ -102354,10 +105624,11 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::Syst } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -102447,7 +105718,8 @@ public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) @@ -102514,27 +105786,31 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::Syst } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListWorkspaceCommandQuery_Me_Workspaces { /// @@ -102547,18 +105823,20 @@ public partial interface IListWorkspaceCommandQuery_Me_Workspaces 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListWorkspaceCommand_WorkspaceEdge { /// @@ -102571,54 +105849,62 @@ public partial interface IListWorkspaceCommand_WorkspaceEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo : IListWorkspaceCommandQuery_Me_Workspaces_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListWorkspaceCommand_Workspace : IWorkspaceDetailPrompt_Workspace { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node : IListWorkspaceCommand_Workspace { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? me) @@ -102683,7 +105969,8 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCrea } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? workspaces) @@ -102748,10 +106035,11 @@ 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", "15.1.8.0")] + [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 SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo pageInfo) @@ -102828,10 +106116,11 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Workspaces } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node node) @@ -102901,10 +106190,11 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Work } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -102994,7 +106284,8 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_P } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) @@ -103061,27 +106352,31 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces { /// @@ -103094,18 +106389,20 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Wo 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges { /// @@ -103118,31 +106415,35 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Wo 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -103150,17 +106451,20 @@ public partial interface ISetDefaultWorkspaceCommand_Workspace public global::System.Boolean Personal { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQueryResult : global::System.IEquatable, IShowWorkspaceCommandQueryResult { public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? node) @@ -103228,7 +106532,8 @@ public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Api() @@ -103285,7 +106590,8 @@ public ShowWorkspaceCommandQuery_Node_Api() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_ApiDocument() @@ -103342,7 +106648,8 @@ public ShowWorkspaceCommandQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_ApiKey() @@ -103399,7 +106706,8 @@ public ShowWorkspaceCommandQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Client() @@ -103456,7 +106764,8 @@ public ShowWorkspaceCommandQuery_Node_Client() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_ClientChangeLog() @@ -103513,7 +106822,8 @@ public ShowWorkspaceCommandQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_ClientDeployment() @@ -103570,7 +106880,8 @@ public ShowWorkspaceCommandQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_ClientVersion() @@ -103627,7 +106938,8 @@ public ShowWorkspaceCommandQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() @@ -103684,7 +106996,8 @@ public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Environment() @@ -103741,7 +107054,8 @@ public ShowWorkspaceCommandQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() @@ -103798,7 +107112,8 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() @@ -103855,7 +107170,8 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -103912,7 +107228,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() @@ -103969,7 +107286,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() @@ -104026,7 +107344,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() @@ -104083,7 +107402,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() @@ -104140,7 +107460,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() @@ -104197,7 +107518,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -104254,7 +107576,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() @@ -104311,7 +107634,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() @@ -104368,7 +107692,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -104425,7 +107750,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() @@ -104482,7 +107808,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() @@ -104539,7 +107866,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() @@ -104596,7 +107924,8 @@ public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Group() @@ -104653,7 +107982,8 @@ public ShowWorkspaceCommandQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_McpFeatureCollection() @@ -104710,7 +108040,8 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() @@ -104767,7 +108098,8 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() @@ -104824,7 +108156,8 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() @@ -104881,7 +108214,8 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollection { public ShowWorkspaceCommandQuery_Node_OpenApiCollection() @@ -104938,7 +108272,8 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog { public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() @@ -104995,7 +108330,8 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment { public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() @@ -105052,7 +108388,8 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion { public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() @@ -105109,7 +108446,8 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Organization() @@ -105166,7 +108504,8 @@ public ShowWorkspaceCommandQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_OrganizationMember() @@ -105223,7 +108562,8 @@ public ShowWorkspaceCommandQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_SchemaChangeLog() @@ -105280,7 +108620,8 @@ public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_SchemaDeployment() @@ -105337,7 +108678,8 @@ public ShowWorkspaceCommandQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Stage() @@ -105394,7 +108736,8 @@ public ShowWorkspaceCommandQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_User() @@ -105451,7 +108794,8 @@ public ShowWorkspaceCommandQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) @@ -105518,7 +108862,8 @@ public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ShowWorkspaceCommandQuery_Node_WorkspaceDocument() @@ -105575,7 +108920,8 @@ public ShowWorkspaceCommandQuery_Node_WorkspaceDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQueryResult { /// @@ -105584,220 +108930,263 @@ public partial interface IShowWorkspaceCommandQueryResult public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Api : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_ApiDocument : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_ApiKey : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Client : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_ClientChangeLog : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_ClientDeployment : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_ClientVersion : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Environment : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Group : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollection : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollection : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Organization : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_OrganizationMember : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_SchemaChangeLog : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_SchemaDeployment : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Stage : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_User : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Workspace : IShowWorkspaceCommandQuery_Node, IWorkspaceDetailPrompt_Workspace { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_WorkspaceDocument : IShowWorkspaceCommandQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -105862,7 +109251,8 @@ public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? apis) @@ -105927,10 +109317,11 @@ public SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Co } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_ApisConnection { public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo pageInfo) @@ -106007,10 +109398,11 @@ public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Col } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node node) @@ -106080,10 +109472,11 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Str } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -106173,7 +109566,8 @@ public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -106254,7 +109648,8 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(global::System.String id, global::System.String name) @@ -106318,7 +109713,8 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(gl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) @@ -106379,7 +109775,8 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(g } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) @@ -106443,27 +109840,31 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPromptQueryResult { public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? WorkspaceById { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPromptQuery_WorkspaceById { public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? Apis { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPromptQuery_WorkspaceById_Apis { /// @@ -106476,18 +109877,20 @@ public partial interface ISelectApiPromptQuery_WorkspaceById_Apis 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPrompt_ApiEdge { /// @@ -106500,84 +109903,97 @@ public partial interface ISelectApiPrompt_ApiEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo : ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node : ISelectApiPrompt_Api { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQueryResult : global::System.IEquatable, IPageClientVersionDetailQueryResult { public PageClientVersionDetailQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? node) @@ -106645,7 +110061,8 @@ public PageClientVersionDetailQueryResult(global::ChilliCream.Nitro.CommandLine. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_Api : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Api { public PageClientVersionDetailQuery_Node_Api() @@ -106702,7 +110119,8 @@ public PageClientVersionDetailQuery_Node_Api() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_ApiDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiDocument { public PageClientVersionDetailQuery_Node_ApiDocument() @@ -106759,7 +110177,8 @@ public PageClientVersionDetailQuery_Node_ApiDocument() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_ApiKey : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiKey { public PageClientVersionDetailQuery_Node_ApiKey() @@ -106816,7 +110235,8 @@ public PageClientVersionDetailQuery_Node_ApiKey() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? versions) @@ -106881,7 +110301,8 @@ public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.Comman } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_ClientChangeLog() @@ -106938,7 +110359,8 @@ public PageClientVersionDetailQuery_Node_ClientChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_ClientDeployment() @@ -106995,7 +110417,8 @@ public PageClientVersionDetailQuery_Node_ClientDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_ClientVersion() @@ -107052,7 +110475,8 @@ public PageClientVersionDetailQuery_Node_ClientVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() @@ -107109,7 +110533,8 @@ public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_Environment() @@ -107166,7 +110591,8 @@ public PageClientVersionDetailQuery_Node_Environment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() @@ -107223,7 +110649,8 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() @@ -107280,7 +110707,8 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() @@ -107337,7 +110765,8 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() @@ -107394,7 +110823,8 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() @@ -107451,7 +110881,8 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() @@ -107508,7 +110939,8 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() @@ -107565,7 +110997,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() @@ -107622,7 +111055,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition() @@ -107679,7 +111113,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() @@ -107736,7 +111171,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() @@ -107793,7 +111229,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() @@ -107850,7 +111287,8 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() @@ -107907,7 +111345,8 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() @@ -107964,7 +111403,8 @@ public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() @@ -108021,7 +111461,8 @@ public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_Group() @@ -108078,7 +111519,8 @@ public PageClientVersionDetailQuery_Node_Group() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_McpFeatureCollection() @@ -108135,7 +111577,8 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() @@ -108192,7 +111635,8 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() @@ -108249,7 +111693,8 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() @@ -108306,7 +111751,8 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_OpenApiCollection() @@ -108363,7 +111809,8 @@ public PageClientVersionDetailQuery_Node_OpenApiCollection() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() @@ -108420,7 +111867,8 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() @@ -108477,7 +111925,8 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() @@ -108534,7 +111983,8 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_Organization() @@ -108591,7 +112041,8 @@ public PageClientVersionDetailQuery_Node_Organization() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_OrganizationMember() @@ -108648,7 +112099,8 @@ public PageClientVersionDetailQuery_Node_OrganizationMember() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_SchemaChangeLog() @@ -108705,7 +112157,8 @@ public PageClientVersionDetailQuery_Node_SchemaChangeLog() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_SchemaDeployment() @@ -108762,7 +112215,8 @@ public PageClientVersionDetailQuery_Node_SchemaDeployment() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_Stage() @@ -108819,7 +112273,8 @@ public PageClientVersionDetailQuery_Node_Stage() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_User : global::System.IEquatable, IPageClientVersionDetailQuery_Node_User { public PageClientVersionDetailQuery_Node_User() @@ -108876,7 +112331,8 @@ public PageClientVersionDetailQuery_Node_User() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_Workspace : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Workspace { public PageClientVersionDetailQuery_Node_Workspace() @@ -108933,7 +112389,8 @@ public PageClientVersionDetailQuery_Node_Workspace() } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_WorkspaceDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_WorkspaceDocument { public PageClientVersionDetailQuery_Node_WorkspaceDocument() @@ -108990,10 +112447,11 @@ public PageClientVersionDetailQuery_Node_WorkspaceDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] 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) @@ -109070,10 +112528,11 @@ public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) @@ -109147,10 +112606,11 @@ public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::Syst } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) @@ -109220,7 +112680,8 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -109294,7 +112755,8 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(globa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) @@ -109359,7 +112821,8 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Publish } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) @@ -109420,7 +112883,8 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQueryResult { /// @@ -109429,224 +112893,267 @@ public partial interface IPageClientVersionDetailQueryResult 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Api : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_ApiDocument : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_ApiKey : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_ClientChangeLog : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_ClientDeployment : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_ClientVersion : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Environment : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_FusionConfigurationChangeLog : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_FusionConfigurationDeployment : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Group : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollection : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionVersion : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollection : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionDeployment : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionVersion : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Organization : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_OrganizationMember : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_SchemaChangeLog : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_SchemaDeployment : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Stage : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_User : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Workspace : IPageClientVersionDetailQuery_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Versions { /// @@ -109659,18 +113166,20 @@ public partial interface IPageClientVersionDetailQuery_Node_Versions 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Versions_PageInfo { /// @@ -109683,31 +113192,35 @@ public partial interface IPageClientVersionDetailQuery_Node_Versions_PageInfo public global::System.String? EndCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge : IPageClientVersionDetailQuery_Node_Versions_Edges { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -109716,34 +113229,40 @@ public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectClientPromptQueryResult : global::System.IEquatable, ISelectClientPromptQueryResult { public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? apiById) @@ -109808,7 +113327,8 @@ public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Clien } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? clients) @@ -109873,10 +113393,11 @@ 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectClientPromptQuery_ApiById_Clients_ClientsConnection : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_ClientsConnection { public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo pageInfo) @@ -109953,10 +113474,11 @@ public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System. } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node node) @@ -110026,10 +113548,11 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System. } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -110119,7 +113642,8 @@ public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -110197,7 +113721,8 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) @@ -110265,10 +113790,11 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) @@ -110345,10 +113871,11 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersion } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) @@ -110418,10 +113945,11 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientV } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) @@ -110495,7 +114023,8 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_Page } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -110569,7 +114098,8 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Cl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) @@ -110634,7 +114164,8 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) @@ -110695,27 +114226,31 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPromptQuery_ApiById_Clients { /// @@ -110728,18 +114263,20 @@ public partial interface ISelectClientPromptQuery_ApiById_Clients 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPrompt_ClientEdge { /// @@ -110752,69 +114289,79 @@ public partial interface ISelectClientPrompt_ClientEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo : ISelectClientPromptQuery_ApiById_Clients_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPrompt_Client : IClientDetailPrompt_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node : ISelectClientPrompt_Client { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions { /// @@ -110827,34 +114374,38 @@ public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Ver 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo { /// @@ -110867,15 +114418,17 @@ public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Ver public global::System.String? EndCursor { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -110884,34 +114437,40 @@ public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Ver public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class BeginFusionConfigurationPublishResult : global::System.IEquatable, IBeginFusionConfigurationPublishResult { public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish beginFusionConfigurationPublish) @@ -110972,7 +114531,8 @@ public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload(global::System.String? requestId, global::System.Collections.Generic.IReadOnlyList? errors) @@ -111047,7 +114607,8 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -111114,7 +114675,8 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Un } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) @@ -111184,7 +114746,8 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Ap } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) @@ -111254,7 +114817,8 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError(global::System.String __typename, global::System.String message) @@ -111321,7 +114885,8 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Su } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) @@ -111388,45 +114953,53 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_In } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISubgraphInvalidError : IError { /// @@ -111435,12 +115008,14 @@ public partial interface ISubgraphInvalidError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IInvalidProcessingStateTransitionError : IError { /// @@ -111449,12 +115024,14 @@ public partial interface IInvalidProcessingStateTransitionError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -111515,7 +115092,8 @@ public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String failed, global::System.Collections.Generic.IReadOnlyList errors) @@ -111595,7 +115173,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String success) @@ -111668,7 +115247,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String failed, global::System.Collections.Generic.IReadOnlyList errors) @@ -111748,7 +115328,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String success, global::System.Collections.Generic.IReadOnlyList changes) @@ -111828,7 +115409,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) @@ -111895,7 +115477,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) @@ -111962,7 +115545,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) @@ -112038,7 +115622,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String ready) @@ -112111,7 +115696,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) @@ -112178,7 +115764,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) @@ -112252,7 +115839,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError(global::System.String message) @@ -112313,7 +115901,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError(global::System.String message, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList errors) @@ -112387,7 +115976,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError(global::System.String message) @@ -112448,7 +116038,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError(global::System.String message) @@ -112509,7 +116100,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError(global::System.String message) @@ -112570,7 +116162,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -112644,7 +116237,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -112709,7 +116303,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -112774,7 +116369,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) @@ -112849,7 +116445,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) @@ -112920,7 +116517,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1(global::System.String __typename, global::System.String message) @@ -112987,7 +116585,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113064,7 +116663,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113141,7 +116741,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113218,7 +116819,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113295,7 +116897,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113372,7 +116975,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113449,7 +117053,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -113519,7 +117124,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -113586,7 +117192,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -113656,7 +117263,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -113733,7 +117341,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -113798,7 +117407,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -113863,7 +117473,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -113928,7 +117539,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -113993,7 +117605,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) @@ -114058,7 +117671,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -114126,7 +117740,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -114198,7 +117813,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -114270,7 +117886,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client(global::System.String id, global::System.String name) @@ -114334,7 +117951,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114412,7 +118030,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114489,7 +118108,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114566,7 +118186,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114643,7 +118264,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114720,7 +118342,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114797,7 +118420,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -114874,7 +118498,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -114944,7 +118569,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -115011,7 +118637,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -115081,7 +118708,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115158,7 +118786,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115234,7 +118863,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115314,7 +118944,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115390,7 +119021,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) @@ -115471,7 +119103,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -115541,7 +119174,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -115611,7 +119245,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115692,7 +119327,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -115762,7 +119398,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115839,7 +119476,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -115909,7 +119547,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -115990,7 +119629,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116066,7 +119706,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116142,7 +119783,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -116222,7 +119864,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116303,7 +119946,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116379,7 +120023,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116455,7 +120100,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -116525,7 +120171,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -116595,7 +120242,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116675,7 +120323,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -116745,7 +120394,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -116815,7 +120465,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116896,7 +120547,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -116972,7 +120624,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -117048,7 +120701,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -117118,7 +120772,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -117188,7 +120843,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -117268,7 +120924,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -117349,7 +121006,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -117430,7 +121088,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -117500,7 +121159,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -117570,7 +121230,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -117645,7 +121306,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -117720,7 +121382,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -117788,7 +121451,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -117862,7 +121526,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -117927,7 +121592,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) @@ -117992,7 +121658,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -118057,7 +121724,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) @@ -118122,7 +121790,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -118197,7 +121866,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) @@ -118265,7 +121935,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) @@ -118332,7 +122003,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -118408,7 +122080,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) @@ -118482,7 +122155,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -118547,7 +122221,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) @@ -118612,7 +122287,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) @@ -118676,7 +122352,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -118744,7 +122421,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -118812,7 +122490,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) @@ -118876,7 +122555,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) @@ -118947,7 +122627,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) @@ -119015,7 +122696,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) @@ -119100,7 +122782,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119176,7 +122859,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119256,7 +122940,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119332,7 +123017,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119413,7 +123099,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -119483,7 +123170,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) @@ -119553,7 +123241,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119634,7 +123323,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -119704,7 +123394,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119781,7 +123472,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -119851,7 +123543,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -119932,7 +123625,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120008,7 +123702,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120084,7 +123779,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120164,7 +123860,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120245,7 +123942,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120321,7 +124019,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120397,7 +124096,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -120467,7 +124167,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -120537,7 +124238,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120617,7 +124319,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -120687,7 +124390,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -120757,7 +124461,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120838,7 +124543,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120914,7 +124620,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -120990,7 +124697,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -121060,7 +124768,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -121130,7 +124839,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -121210,7 +124920,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -121291,7 +125002,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -121372,7 +125084,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -121442,7 +125155,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -121512,7 +125226,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -121586,7 +125301,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -121667,7 +125383,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -121740,7 +125457,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -121808,7 +125526,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -121889,7 +125608,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -121957,7 +125677,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122038,7 +125759,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122111,7 +125833,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122187,7 +125910,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122267,7 +125991,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122343,7 +126068,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) @@ -122411,7 +126137,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122492,7 +126219,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122565,7 +126293,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -122629,7 +126358,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122707,7 +126437,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122784,7 +126515,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122861,7 +126593,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -122938,7 +126671,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -123015,7 +126749,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -123092,7 +126827,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -123169,7 +126905,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -123239,7 +126976,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) @@ -123306,7 +127044,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -123376,7 +127115,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -123453,7 +127193,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) @@ -123521,7 +127262,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -123593,7 +127335,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) @@ -123665,7 +127408,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -123750,7 +127494,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) @@ -123811,7 +127556,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -123896,7 +127642,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) @@ -123957,7 +127704,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -124021,7 +127769,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -124095,7 +127844,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -124176,7 +127926,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -124249,7 +128000,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -124325,7 +128077,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -124405,7 +128158,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -124481,7 +128235,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -124562,7 +128317,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -124632,7 +128388,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -124702,7 +128459,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -124783,7 +128541,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -124853,7 +128612,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -124930,7 +128690,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) @@ -125000,7 +128761,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 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) @@ -125081,7 +128843,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125157,7 +128920,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125233,7 +128997,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125313,7 +129078,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125394,7 +129160,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125470,7 +129237,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125546,7 +129314,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -125616,7 +129385,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -125686,7 +129456,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125766,7 +129537,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -125836,7 +129608,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -125906,7 +129679,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -125987,7 +129761,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -126063,7 +129838,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -126139,7 +129915,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -126209,7 +129986,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) @@ -126279,7 +130057,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -126359,7 +130138,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -126440,7 +130220,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -126521,7 +130302,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -126591,7 +130373,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) @@ -126661,7 +130444,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -126725,7 +130509,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) @@ -126789,20 +130574,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChangedResult { public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged OnFusionConfigurationPublishingTaskChanged { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IFusionConfigurationPublishingFailed { /// @@ -126812,12 +130600,14 @@ public partial interface IFusionConfigurationPublishingFailed public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationPublishingFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IFusionConfigurationPublishingSuccess { /// @@ -126826,12 +130616,14 @@ public partial interface IFusionConfigurationPublishingSuccess public global::System.String Success { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationPublishingSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IFusionConfigurationValidationFailed { /// @@ -126841,12 +130633,14 @@ public partial interface IFusionConfigurationValidationFailed public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationValidationFailed { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IFusionConfigurationValidationSuccess { /// @@ -126856,246 +130650,292 @@ public partial interface IFusionConfigurationValidationSuccess public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationValidationSuccess { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IOperationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskApproved { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskIsQueued { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskIsReady { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IValidationInProgress { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IWaitForApproval { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -127104,430 +130944,512 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -127536,317 +131458,378 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon public global::System.Collections.Generic.IReadOnlyList? Locations { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } @@ -127855,392 +131838,466 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes : ISchemaChangeLogEntry { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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_McpFeatureCollection? McpFeatureCollection { get; } public global::System.Collections.Generic.IReadOnlyList Entities { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -128301,7 +132358,8 @@ public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) @@ -128369,7 +132427,8 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Can } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation { public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -128436,7 +132495,8 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError { public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) @@ -128503,7 +132563,8 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError { public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) @@ -128570,34 +132631,40 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IFusionConfigurationRequestNotFoundError : IError { /// @@ -128606,17 +132673,20 @@ public partial interface IFusionConfigurationRequestNotFoundError : IError public global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CommitFusionConfigurationPublishResult : global::System.IEquatable, ICommitFusionConfigurationPublishResult { public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish commitFusionConfigurationPublish) @@ -128677,7 +132747,8 @@ public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload(global::System.Collections.Generic.IReadOnlyList? errors) @@ -128745,7 +132816,8 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation { public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -128812,7 +132884,8 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError { public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) @@ -128879,7 +132952,8 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError { public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) @@ -128946,44 +133020,52 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StartFusionConfigurationPublishResult : global::System.IEquatable, IStartFusionConfigurationPublishResult { public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition startFusionConfigurationComposition) @@ -129044,7 +133126,8 @@ public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) @@ -129112,7 +133195,8 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Start } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -129179,7 +133263,8 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) @@ -129246,7 +133331,8 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError { public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) @@ -129313,44 +133399,52 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload : IStartFusionConfigurationPublish_StartFusionConfigurationComposition { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateFusionConfigurationPublishResult : global::System.IEquatable, IValidateFusionConfigurationPublishResult { public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition validateFusionConfigurationComposition) @@ -129411,7 +133505,8 @@ public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.Comman } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) @@ -129479,7 +133574,8 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) @@ -129546,7 +133642,8 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) @@ -129613,7 +133710,8 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) @@ -129680,44 +133778,52 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQueryResult : global::System.IEquatable, ISelectMcpFeatureCollectionPromptQueryResult { public SelectMcpFeatureCollectionPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById? apiById) @@ -129782,7 +133888,8 @@ public SelectMcpFeatureCollectionPromptQueryResult(global::ChilliCream.Nitro.Com } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQuery_ApiById_Api : global::System.IEquatable, ISelectMcpFeatureCollectionPromptQuery_ApiById_Api { public SelectMcpFeatureCollectionPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections? mcpFeatureCollections) @@ -129847,10 +133954,11 @@ public SelectMcpFeatureCollectionPromptQuery_ApiById_Api(global::ChilliCream.Nit } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMcpFeatureCollectionsConnection : global::System.IEquatable, ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMcpFeatureCollectionsConnection { public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo pageInfo) @@ -129927,10 +134035,11 @@ public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMc } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge : global::System.IEquatable, ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge { public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node node) @@ -130000,10 +134109,11 @@ public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo_PageInfo : global::System.IEquatable, ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo_PageInfo { public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -130093,7 +134203,8 @@ public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageI } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node_McpFeatureCollection : global::System.IEquatable, ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node_McpFeatureCollection { public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node_McpFeatureCollection(global::System.String id, global::System.String name) @@ -130157,27 +134268,31 @@ public SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQueryResult { public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById? ApiById { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById { public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections? McpFeatureCollections { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_Api : ISelectMcpFeatureCollectionPromptQuery_ApiById { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections { /// @@ -130190,18 +134305,20 @@ public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatu public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo PageInfo { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMcpFeatureCollectionsConnection : ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge { /// @@ -130214,54 +134331,62 @@ public partial interface ISelectMcpFeatureCollectionPrompt_McpFeatureCollectionE public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node Node { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges : ISelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge : ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo : IPageInfo { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo_PageInfo : ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPrompt_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node : ISelectMcpFeatureCollectionPrompt_McpFeatureCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node_McpFeatureCollection : ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMockSchemaPromptQueryResult : global::System.IEquatable, ISelectMockSchemaPromptQueryResult { public SelectMockSchemaPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? apiById) @@ -130326,7 +134451,8 @@ public SelectMockSchemaPromptQueryResult(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? mockSchemas) @@ -130391,10 +134517,11 @@ public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.Command } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection { public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo pageInfo) @@ -130471,10 +134598,11 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(glo } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node node) @@ -130544,10 +134672,11 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(glo } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -130637,7 +134766,8 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global: } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 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) @@ -130719,7 +134849,8 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(glo } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(global::System.String username) @@ -130780,7 +134911,8 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_User } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [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 SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(global::System.String username) @@ -130841,27 +134973,31 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_Use } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas { /// @@ -130874,18 +135010,20 @@ public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMockCommand_MockEdge { /// @@ -130898,76 +135036,88 @@ public partial interface ISelectMockCommand_MockEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMockCommand_Mock : IMockSchemaDetailPrompt { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node : ISelectMockCommand_Mock { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -131032,7 +135182,8 @@ public SelectOpenApiCollectionPromptQueryResult(global::ChilliCream.Nitro.Comman } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -131097,10 +135248,11 @@ public SelectOpenApiCollectionPromptQuery_ApiById_Api(global::ChilliCream.Nitro. } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// A connection to a list of items. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection { public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo pageInfo) @@ -131177,10 +135329,11 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiC } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// An edge in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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) @@ -131250,10 +135403,11 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOp } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator /// /// Information about pagination in a connection. /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) @@ -131343,7 +135497,8 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_Pa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 { public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection(global::System.String id, global::System.String name) @@ -131407,27 +135562,31 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_ } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections { /// @@ -131440,18 +135599,20 @@ public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiColl 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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollectionEdge { /// @@ -131464,54 +135625,62 @@ public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollectionEdge 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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node : ISelectOpenApiCollectionPrompt_OpenApiCollection { } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiKeyInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; @@ -131611,7 +135780,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(CreateApiKeyInput? other) @@ -131712,7 +135882,8 @@ public partial record CreateApiKeyInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsWorkspaceIdSet => _set_workspaceId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ApiKeyPermissionScopeInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -131776,7 +135947,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(ApiKeyPermissionScopeInput? other) @@ -131847,7 +136019,8 @@ public partial record ApiKeyPermissionScopeInput : global::ChilliCream.Nitro.Com global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo.IsWorkspaceIdSet => _set_workspaceId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class RoleAssigmentConditionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _roleAssignmentStageAuthorizationConditionInputFormatter = default !; @@ -131894,7 +136067,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(RoleAssigmentConditionInput? other) @@ -131946,7 +136120,8 @@ public partial record RoleAssigmentConditionInput : global::ChilliCream.Nitro.Co global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo.IsStageAuthorizationConditionSet => _set_stageAuthorizationCondition; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -131991,7 +136166,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -132039,7 +136215,8 @@ public partial record RoleAssignmentStageAuthorizationConditionInput : global::C global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo.IsNameSet => _set_name; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -132084,7 +136261,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(DeleteApiKeyInput? other) @@ -132132,7 +136310,8 @@ public partial record DeleteApiKeyInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo.IsApiKeyIdSet => _set_apiKeyId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateApiSettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -132194,7 +136373,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -132257,7 +136437,8 @@ public partial record UpdateApiSettingsInput : global::ChilliCream.Nitro.Command global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo.IsSettingsSet => _set_settings; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -132304,7 +136485,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(PartialApiSettingsInput? other) @@ -132356,7 +136538,8 @@ public partial record PartialApiSettingsInput : global::ChilliCream.Nitro.Comman global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo.IsSchemaRegistrySet => _set_schemaRegistry; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PartialSchemaRegistrySettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; @@ -132420,7 +136603,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(PartialSchemaRegistrySettingsInput? other) @@ -132491,7 +136675,8 @@ public partial record PartialSchemaRegistrySettingsInput : global::ChilliCream.N global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo.IsTreatDangerousAsBreakingSet => _set_treatDangerousAsBreaking; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -132553,7 +136738,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(CreateClientInput? other) @@ -132616,7 +136802,8 @@ public partial record CreateClientInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo.IsNameSet => _set_name; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteClientByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -132661,7 +136848,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(DeleteClientByIdInput? other) @@ -132709,7 +136897,8 @@ public partial record DeleteClientByIdInput : global::ChilliCream.Nitro.CommandL global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo.IsClientIdSet => _set_clientId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -132822,7 +137011,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(PublishClientInput? other) @@ -132938,7 +137128,8 @@ public partial record PublishClientInput : global::ChilliCream.Nitro.CommandLine global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UnpublishClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -133015,7 +137206,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(UnpublishClientInput? other) @@ -133093,7 +137285,8 @@ public partial record UnpublishClientInput : global::ChilliCream.Nitro.CommandLi global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsTagSet => _set_tag; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -133167,7 +137360,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(UploadClientInput? other) @@ -133245,7 +137439,8 @@ public partial record UploadClientInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsTagSet => _set_tag; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -133319,7 +137514,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(ValidateClientInput? other) @@ -133397,7 +137593,8 @@ public partial record ValidateClientInput : global::ChilliCream.Nitro.CommandLin global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsStageSet => _set_stage; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadFusionSubgraphInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -133471,7 +137668,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(UploadFusionSubgraphInput? other) @@ -133549,7 +137747,8 @@ public partial record UploadFusionSubgraphInput : global::ChilliCream.Nitro.Comm global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsTagSet => _set_tag; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -133611,7 +137810,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(CreateMcpFeatureCollectionInput? other) @@ -133674,7 +137874,8 @@ public partial record CreateMcpFeatureCollectionInput : global::ChilliCream.Nitr global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo.IsNameSet => _set_name; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -133719,7 +137920,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdInput? other) @@ -133767,7 +137969,8 @@ public partial record DeleteMcpFeatureCollectionByIdInput : global::ChilliCream. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; @@ -133880,7 +138083,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(PublishMcpFeatureCollectionInput? other) @@ -133996,7 +138200,8 @@ public partial record PublishMcpFeatureCollectionInput : global::ChilliCream.Nit global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; @@ -134070,7 +138275,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UploadMcpFeatureCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionInputInfo { public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionInput? other) @@ -134148,7 +138354,8 @@ public partial record UploadMcpFeatureCollectionInput : global::ChilliCream.Nitr global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionInputInfo.IsTagSet => _set_tag; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; @@ -134222,7 +138429,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionInputInfo { public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionInput? other) @@ -134300,7 +138508,8 @@ public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Ni global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionInputInfo.IsStageSet => _set_stage; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -134362,7 +138571,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -134425,7 +138635,8 @@ public partial record CreateOpenApiCollectionInput : global::ChilliCream.Nitro.C global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo.IsNameSet => _set_name; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -134470,7 +138681,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -134518,7 +138730,8 @@ public partial record DeleteOpenApiCollectionByIdInput : global::ChilliCream.Nit global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; @@ -134631,7 +138844,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(PublishOpenApiCollectionInput? other) @@ -134747,7 +138961,8 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; @@ -134821,7 +139036,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(UploadOpenApiCollectionInput? other) @@ -134899,7 +139115,8 @@ public partial record UploadOpenApiCollectionInput : global::ChilliCream.Nitro.C global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsTagSet => _set_tag; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; @@ -134973,7 +139190,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(ValidateOpenApiCollectionInput? other) @@ -135051,7 +139269,8 @@ public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsStageSet => _set_stage; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreatePersonalAccessTokenInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; @@ -135108,7 +139327,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(CreatePersonalAccessTokenInput? other) @@ -135171,7 +139391,8 @@ public partial record CreatePersonalAccessTokenInput : global::ChilliCream.Nitro global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo.IsExpiresAtSet => _set_expiresAt; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -135216,7 +139437,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -135264,7 +139486,8 @@ public partial record RevokePersonalAccessTokenInput : global::ChilliCream.Nitro global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo.IsIdSet => _set_id; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishSchemaInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -135377,7 +139600,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishSchemaInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaInputInfo { public virtual global::System.Boolean Equals(PublishSchemaInput? other) @@ -135493,7 +139717,8 @@ public partial record PublishSchemaInput : global::ChilliCream.Nitro.CommandLine global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadSchemaInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -135567,7 +139792,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UploadSchemaInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaInputInfo { public virtual global::System.Boolean Equals(UploadSchemaInput? other) @@ -135645,7 +139871,8 @@ public partial record UploadSchemaInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaInputInfo.IsTagSet => _set_tag; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateSchemaInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -135719,7 +139946,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaInputInfo { public virtual global::System.Boolean Equals(ValidateSchemaInput? other) @@ -135797,7 +140025,8 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLin global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaInputInfo.IsStageSet => _set_stage; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateStagesInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -135870,7 +140099,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(UpdateStagesInput? other) @@ -135937,7 +140167,8 @@ public partial record UpdateStagesInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo.IsUpdatedStagesSet => _set_updatedStages; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StageUpdateInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _stageConditionUpdateInputFormatter = default !; @@ -136027,7 +140258,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(StageUpdateInput? other) @@ -136112,7 +140344,8 @@ public partial record StageUpdateInput : global::ChilliCream.Nitro.CommandLine.C global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsNameSet => _set_name; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StageConditionUpdateInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; @@ -136157,7 +140390,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(StageConditionUpdateInput? other) @@ -136205,7 +140439,8 @@ public partial record StageConditionUpdateInput : global::ChilliCream.Nitro.Comm global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo.IsAfterStageSet => _set_afterStage; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -136250,7 +140485,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -136298,7 +140534,8 @@ public partial record CreateWorkspaceInput : global::ChilliCream.Nitro.CommandLi global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo.IsNameSet => _set_name; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -136428,7 +140665,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record BeginFusionConfigurationPublishInput : global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo { public virtual global::System.Boolean Equals(BeginFusionConfigurationPublishInput? other) @@ -136563,7 +140801,8 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CancelFusionConfigurationCompositionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; @@ -136608,7 +140847,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -136656,7 +140896,8 @@ public partial record CancelFusionConfigurationCompositionInput : global::Chilli global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -136713,7 +140954,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 virtual global::System.Boolean Equals(CommitFusionConfigurationPublishInput? other) @@ -136776,7 +141018,8 @@ public partial record CommitFusionConfigurationPublishInput : global::ChilliCrea global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo.IsRequestIdSet => _set_requestId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !; @@ -136821,7 +141064,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -136869,7 +141113,8 @@ public partial record StartFusionConfigurationCompositionInput : global::ChilliC global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateFusionConfigurationCompositionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; @@ -136926,7 +141171,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateFusionConfigurationCompositionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionInputInfo { public virtual global::System.Boolean Equals(ValidateFusionConfigurationCompositionInput? other) @@ -136989,7 +141235,8 @@ public partial record ValidateFusionConfigurationCompositionInput : global::Chil global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum ApiKind { Collection, @@ -136997,7 +141244,8 @@ public enum ApiKind Gateway } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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"; @@ -137023,7 +141271,8 @@ public ApiKind Parse(global::System.String serializedValue) } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum ProcessingState { Queued, @@ -137036,7 +141285,8 @@ public enum ProcessingState Approved } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ProcessingStateSerializer : global::StrawberryShake.Serialization.IInputValueFormatter, global::StrawberryShake.Serialization.ILeafValueParser { public global::System.String TypeName => "ProcessingState"; @@ -137072,7 +141322,8 @@ public ProcessingState Parse(global::System.String serializedValue) } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum SchemaChangeSeverity { Safe, @@ -137080,7 +141331,8 @@ public enum SchemaChangeSeverity Breaking } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SchemaChangeSeveritySerializer : global::StrawberryShake.Serialization.IInputValueFormatter, global::StrawberryShake.Serialization.ILeafValueParser { public global::System.String TypeName => "SchemaChangeSeverity"; @@ -137106,7 +141358,8 @@ public SchemaChangeSeverity Parse(global::System.String serializedValue) } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum DirectiveLocation { Query, @@ -137130,7 +141383,8 @@ public enum DirectiveLocation InputFieldDefinition } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DirectiveLocationSerializer : global::StrawberryShake.Serialization.IInputValueFormatter, global::StrawberryShake.Serialization.ILeafValueParser { public global::System.String TypeName => "DirectiveLocation"; @@ -137188,10 +141442,13 @@ public DirectiveLocation Parse(global::System.String serializedValue) } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation /// - /// mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { + /// mutation CreateApiKeyCommandMutation( + /// $input: CreateApiKeyInput! + /// ) { /// createApiKey(input: $input) { /// __typename /// result { @@ -137270,7 +141527,7 @@ public DirectiveLocation Parse(global::System.String serializedValue) /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiKeyCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateApiKeyCommandMutationMutationDocument() @@ -137292,10 +141549,13 @@ private CreateApiKeyCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation /// - /// mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { + /// mutation CreateApiKeyCommandMutation( + /// $input: CreateApiKeyInput! + /// ) { /// createApiKey(input: $input) { /// __typename /// result { @@ -137374,19 +141634,19 @@ private CreateApiKeyCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createApiKeyInputFormatter) + private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createApiKeyInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -137455,10 +141715,13 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation /// - /// mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { + /// mutation CreateApiKeyCommandMutation( + /// $input: CreateApiKeyInput! + /// ) { /// createApiKey(input: $input) { /// __typename /// result { @@ -137537,7 +141800,7 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -137547,10 +141810,13 @@ public partial interface ICreateApiKeyCommandMutationMutation : global::Strawber 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!) { + /// mutation DeleteApiKeyCommandMutation( + /// $input: DeleteApiKeyInput! + /// ) { /// deleteApiKey(input: $input) { /// __typename /// apiKey { @@ -137590,7 +141856,7 @@ public partial interface ICreateApiKeyCommandMutationMutation : global::Strawber /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiKeyCommandMutationMutationDocument : global::StrawberryShake.IDocument { private DeleteApiKeyCommandMutationMutationDocument() @@ -137612,10 +141878,13 @@ private DeleteApiKeyCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { + /// mutation DeleteApiKeyCommandMutation( + /// $input: DeleteApiKeyInput! + /// ) { /// deleteApiKey(input: $input) { /// __typename /// apiKey { @@ -137655,19 +141924,19 @@ private DeleteApiKeyCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteApiKeyInputFormatter) + private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteApiKeyInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -137736,10 +142005,13 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { + /// mutation DeleteApiKeyCommandMutation( + /// $input: DeleteApiKeyInput! + /// ) { /// deleteApiKey(input: $input) { /// __typename /// apiKey { @@ -137779,7 +142051,7 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -137789,10 +142061,15 @@ public partial interface IDeleteApiKeyCommandMutationMutation : global::Strawber 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 ListApiKeyCommandQuery GraphQL operation /// - /// query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { + /// query ListApiKeyCommandQuery( + /// $workspaceId: ID! + /// $after: String + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apiKeys(after: $after, first: $first) { @@ -137840,7 +142117,7 @@ public partial interface IDeleteApiKeyCommandMutationMutation : global::Strawber /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiKeyCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListApiKeyCommandQueryQueryDocument() @@ -137862,10 +142139,15 @@ private ListApiKeyCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation /// - /// query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { + /// query ListApiKeyCommandQuery( + /// $workspaceId: ID! + /// $after: String + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apiKeys(after: $after, first: $first) { @@ -137913,14 +142195,14 @@ private ListApiKeyCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -137929,7 +142211,7 @@ public ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + 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; @@ -138026,10 +142308,15 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation /// - /// query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { + /// query ListApiKeyCommandQuery( + /// $workspaceId: ID! + /// $after: String + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apiKeys(after: $after, first: $first) { @@ -138077,7 +142364,7 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -138087,10 +142374,16 @@ public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake. 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 CreateApiCommandMutation GraphQL operation /// - /// mutation CreateApiCommandMutation($workspaceId: ID!, $path: [String!]!, $name: String!, $kind: ApiKind) { + /// mutation CreateApiCommandMutation( + /// $workspaceId: ID! + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind + /// ) { /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { /// __typename /// changes { @@ -138141,7 +142434,7 @@ public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake. /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateApiCommandMutationMutationDocument() @@ -138163,10 +142456,16 @@ private CreateApiCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateApiCommandMutation GraphQL operation /// - /// mutation CreateApiCommandMutation($workspaceId: ID!, $path: [String!]!, $name: String!, $kind: ApiKind) { + /// mutation CreateApiCommandMutation( + /// $workspaceId: ID! + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind + /// ) { /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { /// __typename /// changes { @@ -138217,14 +142516,14 @@ private CreateApiCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -138233,7 +142532,7 @@ public CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecut _apiKindFormatter = serializerResolver.GetInputValueFormatter("ApiKind"); } - private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter apiKindFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + 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; @@ -138350,10 +142649,16 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateApiCommandMutation GraphQL operation /// - /// mutation CreateApiCommandMutation($workspaceId: ID!, $path: [String!]!, $name: String!, $kind: ApiKind) { + /// mutation CreateApiCommandMutation( + /// $workspaceId: ID! + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind + /// ) { /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { /// __typename /// changes { @@ -138404,7 +142709,7 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation With(global::System.Action configure); @@ -138414,10 +142719,13 @@ public partial interface ICreateApiCommandMutationMutation : global::StrawberryS 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 DeleteApiCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery($apiId: ID!) { + /// query DeleteApiCommandQuery( + /// $apiId: ID! + /// ) { /// node(id: $apiId) { /// __typename /// ... DeleteApiCommandQuery_Api @@ -138434,7 +142742,7 @@ public partial interface ICreateApiCommandMutationMutation : global::StrawberryS /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQueryQueryDocument : global::StrawberryShake.IDocument { private DeleteApiCommandQueryQueryDocument() @@ -138456,10 +142764,13 @@ private DeleteApiCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery($apiId: ID!) { + /// query DeleteApiCommandQuery( + /// $apiId: ID! + /// ) { /// node(id: $apiId) { /// __typename /// ... DeleteApiCommandQuery_Api @@ -138476,19 +142787,19 @@ private DeleteApiCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -138557,10 +142868,13 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery($apiId: ID!) { + /// query DeleteApiCommandQuery( + /// $apiId: ID! + /// ) { /// node(id: $apiId) { /// __typename /// ... DeleteApiCommandQuery_Api @@ -138577,7 +142891,7 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery With(global::System.Action configure); @@ -138587,10 +142901,13 @@ public partial interface IDeleteApiCommandQueryQuery : global::StrawberryShake.I global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation DeleteApiCommandMutation($apiId: ID!) { + /// mutation DeleteApiCommandMutation( + /// $apiId: ID! + /// ) { /// deleteApiById(input: { apiId: $apiId }) { /// __typename /// api { @@ -138629,7 +142946,7 @@ public partial interface IDeleteApiCommandQueryQuery : global::StrawberryShake.I /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandMutationMutationDocument : global::StrawberryShake.IDocument { private DeleteApiCommandMutationMutationDocument() @@ -138651,10 +142968,13 @@ private DeleteApiCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation DeleteApiCommandMutation($apiId: ID!) { + /// mutation DeleteApiCommandMutation( + /// $apiId: ID! + /// ) { /// deleteApiById(input: { apiId: $apiId }) { /// __typename /// api { @@ -138693,19 +143013,19 @@ private DeleteApiCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, 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; @@ -138774,10 +143094,13 @@ private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecu } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation DeleteApiCommandMutation($apiId: ID!) { + /// mutation DeleteApiCommandMutation( + /// $apiId: ID! + /// ) { /// deleteApiById(input: { apiId: $apiId }) { /// __typename /// api { @@ -138816,7 +143139,7 @@ private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecu /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation With(global::System.Action configure); @@ -138826,10 +143149,15 @@ public partial interface IDeleteApiCommandMutationMutation : global::StrawberryS global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query ListApiCommandQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { @@ -138888,7 +143216,7 @@ public partial interface IDeleteApiCommandMutationMutation : global::StrawberryS /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListApiCommandQueryQueryDocument() @@ -138910,10 +143238,15 @@ private ListApiCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query ListApiCommandQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { @@ -138972,14 +143305,14 @@ private ListApiCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -138988,7 +143321,7 @@ public ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, 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; @@ -139085,10 +143418,15 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query ListApiCommandQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { @@ -139147,7 +143485,7 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery With(global::System.Action configure); @@ -139157,10 +143495,13 @@ public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOp 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 SetApiSettingsCommandMutation GraphQL operation /// - /// mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { + /// mutation SetApiSettingsCommandMutation( + /// $input: UpdateApiSettingsInput! + /// ) { /// updateApiSettings(input: $input) { /// __typename /// api { @@ -139226,7 +143567,7 @@ public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOp /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SetApiSettingsCommandMutationMutationDocument : global::StrawberryShake.IDocument { private SetApiSettingsCommandMutationMutationDocument() @@ -139248,10 +143589,13 @@ private SetApiSettingsCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { + /// mutation SetApiSettingsCommandMutation( + /// $input: UpdateApiSettingsInput! + /// ) { /// updateApiSettings(input: $input) { /// __typename /// api { @@ -139317,19 +143661,19 @@ private SetApiSettingsCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SetApiSettingsCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _updateApiSettingsInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _updateApiSettingsInputFormatter = serializerResolver.GetInputValueFormatter("UpdateApiSettingsInput"); } - private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateApiSettingsInputFormatter) + private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateApiSettingsInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -139398,10 +143742,13 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { + /// mutation SetApiSettingsCommandMutation( + /// $input: UpdateApiSettingsInput! + /// ) { /// updateApiSettings(input: $input) { /// __typename /// api { @@ -139467,7 +143814,7 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISetApiSettingsCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation With(global::System.Action configure); @@ -139477,10 +143824,13 @@ public partial interface ISetApiSettingsCommandMutationMutation : global::Strawb 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 ShowApiCommandQuery GraphQL operation /// - /// query ShowApiCommandQuery($workspaceId: ID!) { + /// query ShowApiCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... ApiDetailPrompt_Api @@ -139507,7 +143857,7 @@ public partial interface ISetApiSettingsCommandMutationMutation : global::Strawb /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ShowApiCommandQueryQueryDocument() @@ -139529,10 +143879,13 @@ private ShowApiCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// query ShowApiCommandQuery($workspaceId: ID!) { + /// query ShowApiCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... ApiDetailPrompt_Api @@ -139559,19 +143912,19 @@ private ShowApiCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -139640,10 +143993,13 @@ private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// query ShowApiCommandQuery($workspaceId: ID!) { + /// query ShowApiCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... ApiDetailPrompt_Api @@ -139670,7 +144026,7 @@ private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery With(global::System.Action configure); @@ -139680,10 +144036,13 @@ public partial interface IShowApiCommandQueryQuery : global::StrawberryShake.IOp global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation CreateClientCommandMutation($input: CreateClientInput!) { + /// mutation CreateClientCommandMutation( + /// $input: CreateClientInput! + /// ) { /// createClient(input: $input) { /// __typename /// client { @@ -139762,7 +144121,7 @@ public partial interface IShowApiCommandQueryQuery : global::StrawberryShake.IOp /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateClientCommandMutationMutationDocument() @@ -139784,10 +144143,13 @@ private CreateClientCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation CreateClientCommandMutation($input: CreateClientInput!) { + /// mutation CreateClientCommandMutation( + /// $input: CreateClientInput! + /// ) { /// createClient(input: $input) { /// __typename /// client { @@ -139866,19 +144228,19 @@ private CreateClientCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createClientInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _createClientInputFormatter = serializerResolver.GetInputValueFormatter("CreateClientInput"); } - private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createClientInputFormatter) + private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -139947,10 +144309,13 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation CreateClientCommandMutation($input: CreateClientInput!) { + /// mutation CreateClientCommandMutation( + /// $input: CreateClientInput! + /// ) { /// createClient(input: $input) { /// __typename /// client { @@ -140029,7 +144394,7 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation With(global::System.Action configure); @@ -140039,10 +144404,13 @@ public partial interface ICreateClientCommandMutationMutation : global::Strawber 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 DeleteClientByIdCommandMutation GraphQL operation /// - /// mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { + /// mutation DeleteClientByIdCommandMutation( + /// $input: DeleteClientByIdInput! + /// ) { /// deleteClientById(input: $input) { /// __typename /// client { @@ -140120,7 +144488,7 @@ public partial interface ICreateClientCommandMutationMutation : global::Strawber /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteClientByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument { private DeleteClientByIdCommandMutationMutationDocument() @@ -140142,10 +144510,13 @@ private DeleteClientByIdCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the DeleteClientByIdCommandMutation GraphQL operation /// - /// mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { + /// mutation DeleteClientByIdCommandMutation( + /// $input: DeleteClientByIdInput! + /// ) { /// deleteClientById(input: $input) { /// __typename /// client { @@ -140223,19 +144594,19 @@ private DeleteClientByIdCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteClientByIdCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteClientByIdInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _deleteClientByIdInputFormatter = serializerResolver.GetInputValueFormatter("DeleteClientByIdInput"); } - private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteClientByIdInputFormatter) + private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteClientByIdInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -140304,10 +144675,13 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the DeleteClientByIdCommandMutation GraphQL operation /// - /// mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { + /// mutation DeleteClientByIdCommandMutation( + /// $input: DeleteClientByIdInput! + /// ) { /// deleteClientById(input: $input) { /// __typename /// client { @@ -140385,7 +144759,7 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteClientByIdCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation With(global::System.Action configure); @@ -140395,10 +144769,15 @@ 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) { + /// query ListClientCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -140470,7 +144849,7 @@ public partial interface IDeleteClientByIdCommandMutationMutation : global::Stra /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListClientCommandQueryQueryDocument() @@ -140492,10 +144871,15 @@ private ListClientCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListClientCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -140567,14 +144951,14 @@ private ListClientCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -140583,7 +144967,7 @@ public ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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; @@ -140680,10 +145064,15 @@ private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListClientCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -140755,7 +145144,7 @@ private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -140765,10 +145154,13 @@ public partial interface IListClientCommandQueryQuery : global::StrawberryShake. 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 /// - /// mutation PublishClientVersion($input: PublishClientInput!) { + /// mutation PublishClientVersion( + /// $input: PublishClientInput! + /// ) { /// publishClient(input: $input) { /// __typename /// id @@ -140814,7 +145206,7 @@ public partial interface IListClientCommandQueryQuery : global::StrawberryShake. /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishClientVersionMutationDocument : global::StrawberryShake.IDocument { private PublishClientVersionMutationDocument() @@ -140836,10 +145228,13 @@ private PublishClientVersionMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PublishClientVersion GraphQL operation /// - /// mutation PublishClientVersion($input: PublishClientInput!) { + /// mutation PublishClientVersion( + /// $input: PublishClientInput! + /// ) { /// publishClient(input: $input) { /// __typename /// id @@ -140885,19 +145280,19 @@ private PublishClientVersionMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishClientVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishClientInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _publishClientInputFormatter = serializerResolver.GetInputValueFormatter("PublishClientInput"); } - private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishClientInputFormatter) + private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -140966,10 +145361,13 @@ private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor< } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PublishClientVersion GraphQL operation /// - /// mutation PublishClientVersion($input: PublishClientInput!) { + /// mutation PublishClientVersion( + /// $input: PublishClientInput! + /// ) { /// publishClient(input: $input) { /// __typename /// id @@ -141015,7 +145413,7 @@ private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor< /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishClientVersionMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation With(global::System.Action configure); @@ -141025,10 +145423,13 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the OnClientVersionPublishUpdated GraphQL operation /// - /// subscription OnClientVersionPublishUpdated($requestId: ID!) { + /// subscription OnClientVersionPublishUpdated( + /// $requestId: ID! + /// ) { /// onClientVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... ClientVersionPublishFailed @@ -141585,7 +145986,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionPublishUpdatedSubscriptionDocument : global::StrawberryShake.IDocument { private OnClientVersionPublishUpdatedSubscriptionDocument() @@ -141607,10 +146008,13 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the OnClientVersionPublishUpdated GraphQL operation /// - /// subscription OnClientVersionPublishUpdated($requestId: ID!) { + /// subscription OnClientVersionPublishUpdated( + /// $requestId: ID! + /// ) { /// onClientVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... ClientVersionPublishFailed @@ -142167,7 +146571,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionPublishUpdatedSubscription : global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -142214,10 +146618,13 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the OnClientVersionPublishUpdated GraphQL operation /// - /// subscription OnClientVersionPublishUpdated($requestId: ID!) { + /// subscription OnClientVersionPublishUpdated( + /// $requestId: ID! + /// ) { /// onClientVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... ClientVersionPublishFailed @@ -142774,16 +147181,19 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdatedSubscription : 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 ShowClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery($clientId: ID!) { + /// query ShowClientCommandQuery( + /// $clientId: ID! + /// ) { /// node(id: $clientId) { /// __typename /// ... ClientDetailPrompt_Client @@ -142830,7 +147240,7 @@ public partial interface IOnClientVersionPublishUpdatedSubscription : global::St /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ShowClientCommandQueryQueryDocument() @@ -142852,10 +147262,13 @@ private ShowClientCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery($clientId: ID!) { + /// query ShowClientCommandQuery( + /// $clientId: ID! + /// ) { /// node(id: $clientId) { /// __typename /// ... ClientDetailPrompt_Client @@ -142902,19 +147315,19 @@ private ShowClientCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, 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; @@ -142983,10 +147396,13 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery($clientId: ID!) { + /// query ShowClientCommandQuery( + /// $clientId: ID! + /// ) { /// node(id: $clientId) { /// __typename /// ... ClientDetailPrompt_Client @@ -143033,7 +147449,7 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery With(global::System.Action configure); @@ -143043,10 +147459,13 @@ public partial interface IShowClientCommandQueryQuery : global::StrawberryShake. global::System.IObservable> Watch(global::System.String clientId, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// mutation UnpublishClient($input: UnpublishClientInput!) { + /// mutation UnpublishClient( + /// $input: UnpublishClientInput! + /// ) { /// unpublishClient(input: $input) { /// __typename /// clientVersion { @@ -143106,7 +147525,7 @@ public partial interface IShowClientCommandQueryQuery : global::StrawberryShake. /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UnpublishClientMutationDocument : global::StrawberryShake.IDocument { private UnpublishClientMutationDocument() @@ -143128,10 +147547,13 @@ private UnpublishClientMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// mutation UnpublishClient($input: UnpublishClientInput!) { + /// mutation UnpublishClient( + /// $input: UnpublishClientInput! + /// ) { /// unpublishClient(input: $input) { /// __typename /// clientVersion { @@ -143191,19 +147613,19 @@ private UnpublishClientMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UnpublishClientMutation : global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _unpublishClientInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _unpublishClientInputFormatter = serializerResolver.GetInputValueFormatter("UnpublishClientInput"); } - private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter unpublishClientInputFormatter) + private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter unpublishClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -143272,10 +147694,13 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// mutation UnpublishClient($input: UnpublishClientInput!) { + /// mutation UnpublishClient( + /// $input: UnpublishClientInput! + /// ) { /// unpublishClient(input: $input) { /// __typename /// clientVersion { @@ -143335,7 +147760,7 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUnpublishClientMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation With(global::System.Action configure); @@ -143345,10 +147770,13 @@ public partial interface IUnpublishClientMutation : global::StrawberryShake.IOpe 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 UploadClient GraphQL operation /// - /// mutation UploadClient($input: UploadClientInput!) { + /// mutation UploadClient( + /// $input: UploadClientInput! + /// ) { /// uploadClient(input: $input) { /// __typename /// clientVersion { @@ -143395,7 +147823,7 @@ public partial interface IUnpublishClientMutation : global::StrawberryShake.IOpe /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClientMutationDocument : global::StrawberryShake.IDocument { private UploadClientMutationDocument() @@ -143417,10 +147845,13 @@ private UploadClientMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation UploadClient($input: UploadClientInput!) { + /// mutation UploadClient( + /// $input: UploadClientInput! + /// ) { /// uploadClient(input: $input) { /// __typename /// clientVersion { @@ -143467,19 +147898,19 @@ private UploadClientMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClientMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadClientInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _uploadClientInputFormatter = serializerResolver.GetInputValueFormatter("UploadClientInput"); } - private UploadClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadClientInputFormatter) + private UploadClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -143565,10 +147996,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation UploadClient($input: UploadClientInput!) { + /// mutation UploadClient( + /// $input: UploadClientInput! + /// ) { /// uploadClient(input: $input) { /// __typename /// clientVersion { @@ -143615,7 +148049,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadClientMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation With(global::System.Action configure); @@ -143625,10 +148059,13 @@ public partial interface IUploadClientMutation : global::StrawberryShake.IOperat 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 ValidateClientVersion GraphQL operation /// - /// mutation ValidateClientVersion($input: ValidateClientInput!) { + /// mutation ValidateClientVersion( + /// $input: ValidateClientInput! + /// ) { /// validateClient(input: $input) { /// __typename /// id @@ -143666,7 +148103,7 @@ public partial interface IUploadClientMutation : global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateClientVersionMutationDocument : global::StrawberryShake.IDocument { private ValidateClientVersionMutationDocument() @@ -143688,10 +148125,13 @@ private ValidateClientVersionMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// mutation ValidateClientVersion($input: ValidateClientInput!) { + /// mutation ValidateClientVersion( + /// $input: ValidateClientInput! + /// ) { /// validateClient(input: $input) { /// __typename /// id @@ -143729,19 +148169,19 @@ private ValidateClientVersionMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateClientVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateClientInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _validateClientInputFormatter = serializerResolver.GetInputValueFormatter("ValidateClientInput"); } - private ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateClientInputFormatter) + private ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -143827,10 +148267,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// mutation ValidateClientVersion($input: ValidateClientInput!) { + /// mutation ValidateClientVersion( + /// $input: ValidateClientInput! + /// ) { /// validateClient(input: $input) { /// __typename /// id @@ -143868,7 +148311,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateClientVersionMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation With(global::System.Action configure); @@ -143878,10 +148321,13 @@ public partial interface IValidateClientVersionMutation : global::StrawberryShak 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 OnClientVersionValidationUpdated GraphQL operation /// - /// subscription OnClientVersionValidationUpdated($requestId: ID!) { + /// subscription OnClientVersionValidationUpdated( + /// $requestId: ID! + /// ) { /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... ClientVersionValidationFailed @@ -143950,7 +148396,7 @@ public partial interface IValidateClientVersionMutation : global::StrawberryShak /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionValidationUpdatedSubscriptionDocument : global::StrawberryShake.IDocument { private OnClientVersionValidationUpdatedSubscriptionDocument() @@ -143972,10 +148418,13 @@ private OnClientVersionValidationUpdatedSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// subscription OnClientVersionValidationUpdated($requestId: ID!) { + /// subscription OnClientVersionValidationUpdated( + /// $requestId: ID! + /// ) { /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... ClientVersionValidationFailed @@ -144044,7 +148493,7 @@ private OnClientVersionValidationUpdatedSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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; @@ -144091,10 +148540,13 @@ public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// subscription OnClientVersionValidationUpdated($requestId: ID!) { + /// subscription OnClientVersionValidationUpdated( + /// $requestId: ID! + /// ) { /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... ClientVersionValidationFailed @@ -144163,16 +148615,20 @@ public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 /// - /// mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { + /// mutation CreateEnvironmentCommandMutation( + /// $workspaceId: ID! + /// $name: String! + /// ) { /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { /// __typename /// changes { @@ -144213,7 +148669,7 @@ public partial interface IOnClientVersionValidationUpdatedSubscription : global: /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateEnvironmentCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateEnvironmentCommandMutationMutationDocument() @@ -144235,10 +148691,14 @@ private CreateEnvironmentCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { + /// mutation CreateEnvironmentCommandMutation( + /// $workspaceId: ID! + /// $name: String! + /// ) { /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { /// __typename /// changes { @@ -144279,13 +148739,13 @@ private CreateEnvironmentCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateEnvironmentCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -144293,7 +148753,7 @@ public CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperati _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } - private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + 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; @@ -144374,10 +148834,14 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { + /// mutation CreateEnvironmentCommandMutation( + /// $workspaceId: ID! + /// $name: String! + /// ) { /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { /// __typename /// changes { @@ -144418,7 +148882,7 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateEnvironmentCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation With(global::System.Action configure); @@ -144428,10 +148892,15 @@ public partial interface ICreateEnvironmentCommandMutationMutation : global::Str 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 ListEnvironmentCommandQuery GraphQL operation /// - /// query ListEnvironmentCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query ListEnvironmentCommandQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// environments(after: $after, first: $first) { @@ -144479,7 +148948,7 @@ public partial interface ICreateEnvironmentCommandMutationMutation : global::Str /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListEnvironmentCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListEnvironmentCommandQueryQueryDocument() @@ -144501,10 +148970,15 @@ private ListEnvironmentCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation /// - /// query ListEnvironmentCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query ListEnvironmentCommandQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// environments(after: $after, first: $first) { @@ -144552,14 +149026,14 @@ private ListEnvironmentCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListEnvironmentCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -144568,7 +149042,7 @@ public ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecut _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + 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; @@ -144665,10 +149139,15 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation /// - /// query ListEnvironmentCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query ListEnvironmentCommandQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// environments(after: $after, first: $first) { @@ -144716,7 +149195,7 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListEnvironmentCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery With(global::System.Action configure); @@ -144726,10 +149205,13 @@ public partial interface IListEnvironmentCommandQueryQuery : global::StrawberryS 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 /// - /// query ShowEnvironmentCommandQuery($workspaceId: ID!) { + /// query ShowEnvironmentCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... EnvironmentDetailPrompt_Environment @@ -144746,7 +149228,7 @@ public partial interface IListEnvironmentCommandQueryQuery : global::StrawberryS /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowEnvironmentCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ShowEnvironmentCommandQueryQueryDocument() @@ -144768,10 +149250,13 @@ private ShowEnvironmentCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation /// - /// query ShowEnvironmentCommandQuery($workspaceId: ID!) { + /// query ShowEnvironmentCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... EnvironmentDetailPrompt_Environment @@ -144788,19 +149273,19 @@ private ShowEnvironmentCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -144869,10 +149354,13 @@ private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation /// - /// query ShowEnvironmentCommandQuery($workspaceId: ID!) { + /// query ShowEnvironmentCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... EnvironmentDetailPrompt_Environment @@ -144889,7 +149377,7 @@ private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -144899,10 +149387,14 @@ public partial interface IShowEnvironmentCommandQueryQuery : global::StrawberryS global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the FetchConfiguration GraphQL operation /// - /// query FetchConfiguration($id: ID!, $stage: String!) { + /// query FetchConfiguration( + /// $id: ID! + /// $stage: String! + /// ) { /// fusionConfigurationByApiId(id: $id, stage: $stage) { /// __typename /// downloadUrl @@ -144911,7 +149403,7 @@ public partial interface IShowEnvironmentCommandQueryQuery : global::StrawberryS /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class FetchConfigurationQueryDocument : global::StrawberryShake.IDocument { private FetchConfigurationQueryDocument() @@ -144933,10 +149425,14 @@ private FetchConfigurationQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the FetchConfiguration GraphQL operation /// - /// query FetchConfiguration($id: ID!, $stage: String!) { + /// query FetchConfiguration( + /// $id: ID! + /// $stage: String! + /// ) { /// fusionConfigurationByApiId(id: $id, stage: $stage) { /// __typename /// downloadUrl @@ -144945,13 +149441,13 @@ private FetchConfigurationQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class FetchConfigurationQuery : global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -144959,7 +149455,7 @@ public FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter) + 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; @@ -145040,10 +149536,14 @@ private FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the FetchConfiguration GraphQL operation /// - /// query FetchConfiguration($id: ID!, $stage: String!) { + /// query FetchConfiguration( + /// $id: ID! + /// $stage: String! + /// ) { /// fusionConfigurationByApiId(id: $id, stage: $stage) { /// __typename /// downloadUrl @@ -145052,7 +149552,7 @@ private FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -145062,10 +149562,13 @@ public partial interface IFetchConfigurationQuery : global::StrawberryShake.IOpe 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!) { + /// mutation UploadFusionSubgraph( + /// $input: UploadFusionSubgraphInput! + /// ) { /// uploadFusionSubgraph(input: $input) { /// __typename /// fusionSubgraphVersion { @@ -145110,7 +149613,7 @@ public partial interface IFetchConfigurationQuery : global::StrawberryShake.IOpe /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadFusionSubgraphMutationDocument : global::StrawberryShake.IDocument { private UploadFusionSubgraphMutationDocument() @@ -145132,10 +149635,13 @@ private UploadFusionSubgraphMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { + /// mutation UploadFusionSubgraph( + /// $input: UploadFusionSubgraphInput! + /// ) { /// uploadFusionSubgraph(input: $input) { /// __typename /// fusionSubgraphVersion { @@ -145180,19 +149686,19 @@ private UploadFusionSubgraphMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFusionSubgraphInputFormatter) + private UploadFusionSubgraphMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFusionSubgraphInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -145278,10 +149784,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { + /// mutation UploadFusionSubgraph( + /// $input: UploadFusionSubgraphInput! + /// ) { /// uploadFusionSubgraph(input: $input) { /// __typename /// fusionSubgraphVersion { @@ -145326,7 +149835,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation With(global::System.Action configure); @@ -145336,10 +149845,13 @@ public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake 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 CreateMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureCollectionInput!) { + /// mutation CreateMcpFeatureCollectionCommandMutation( + /// $input: CreateMcpFeatureCollectionInput! + /// ) { /// createMcpFeatureCollection(input: $input) { /// __typename /// mcpFeatureCollection { @@ -145384,7 +149896,7 @@ public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateMcpFeatureCollectionCommandMutationMutationDocument() @@ -145406,10 +149918,13 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureCollectionInput!) { + /// mutation CreateMcpFeatureCollectionCommandMutation( + /// $input: CreateMcpFeatureCollectionInput! + /// ) { /// createMcpFeatureCollection(input: $input) { /// __typename /// mcpFeatureCollection { @@ -145454,19 +149969,19 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createMcpFeatureCollectionInputFormatter) + private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createMcpFeatureCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -145535,10 +150050,13 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureCollectionInput!) { + /// mutation CreateMcpFeatureCollectionCommandMutation( + /// $input: CreateMcpFeatureCollectionInput! + /// ) { /// createMcpFeatureCollection(input: $input) { /// __typename /// mcpFeatureCollection { @@ -145583,7 +150101,7 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); @@ -145593,10 +150111,13 @@ public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : gl 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 DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation /// - /// mutation DeleteMcpFeatureCollectionByIdCommandMutation($input: DeleteMcpFeatureCollectionByIdInput!) { + /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( + /// $input: DeleteMcpFeatureCollectionByIdInput! + /// ) { /// deleteMcpFeatureCollectionById(input: $input) { /// __typename /// mcpFeatureCollection { @@ -145639,7 +150160,7 @@ public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : gl /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument { private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() @@ -145661,10 +150182,13 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation /// - /// mutation DeleteMcpFeatureCollectionByIdCommandMutation($input: DeleteMcpFeatureCollectionByIdInput!) { + /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( + /// $input: DeleteMcpFeatureCollectionByIdInput! + /// ) { /// deleteMcpFeatureCollectionById(input: $input) { /// __typename /// mcpFeatureCollection { @@ -145707,19 +150231,19 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteMcpFeatureCollectionByIdInputFormatter) + private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteMcpFeatureCollectionByIdInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -145788,10 +150312,13 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation /// - /// mutation DeleteMcpFeatureCollectionByIdCommandMutation($input: DeleteMcpFeatureCollectionByIdInput!) { + /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( + /// $input: DeleteMcpFeatureCollectionByIdInput! + /// ) { /// deleteMcpFeatureCollectionById(input: $input) { /// __typename /// mcpFeatureCollection { @@ -145834,7 +150361,7 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -145844,10 +150371,15 @@ public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation 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 ListMcpFeatureCollectionCommandQuery GraphQL operation /// - /// query ListMcpFeatureCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListMcpFeatureCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -145893,7 +150425,7 @@ public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListMcpFeatureCollectionCommandQueryQueryDocument() @@ -145915,10 +150447,15 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation /// - /// query ListMcpFeatureCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListMcpFeatureCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -145964,14 +150501,14 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -145980,7 +150517,7 @@ public ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOperat _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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; @@ -146077,10 +150614,15 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation /// - /// query ListMcpFeatureCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListMcpFeatureCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -146126,7 +150668,7 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery With(global::System.Action configure); @@ -146136,10 +150678,13 @@ public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::St 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 PublishMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { + /// mutation PublishMcpFeatureCollectionCommandMutation( + /// $input: PublishMcpFeatureCollectionInput! + /// ) { /// publishMcpFeatureCollection(input: $input) { /// __typename /// id @@ -146184,7 +150729,7 @@ public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::St /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private PublishMcpFeatureCollectionCommandMutationMutationDocument() @@ -146206,10 +150751,13 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { + /// mutation PublishMcpFeatureCollectionCommandMutation( + /// $input: PublishMcpFeatureCollectionInput! + /// ) { /// publishMcpFeatureCollection(input: $input) { /// __typename /// id @@ -146254,19 +150802,19 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishMcpFeatureCollectionInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _publishMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("PublishMcpFeatureCollectionInput"); } - private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishMcpFeatureCollectionInputFormatter) + private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishMcpFeatureCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -146335,10 +150883,13 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { + /// mutation PublishMcpFeatureCollectionCommandMutation( + /// $input: PublishMcpFeatureCollectionInput! + /// ) { /// publishMcpFeatureCollection(input: $input) { /// __typename /// id @@ -146383,7 +150934,7 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); @@ -146393,10 +150944,13 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g 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 PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { + /// subscription PublishMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... McpFeatureCollectionVersionPublishFailed @@ -146953,7 +151507,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument { private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() @@ -146975,10 +151529,13 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { + /// subscription PublishMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... McpFeatureCollectionVersionPublishFailed @@ -147535,7 +152092,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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; @@ -147582,10 +152139,13 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { + /// subscription PublishMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... McpFeatureCollectionVersionPublishFailed @@ -148142,16 +152702,19 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 UploadMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { + /// mutation UploadMcpFeatureCollectionCommandMutation( + /// $input: UploadMcpFeatureCollectionInput! + /// ) { /// uploadMcpFeatureCollection(input: $input) { /// __typename /// mcpFeatureCollectionVersion { @@ -148202,7 +152765,7 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscriptionSubscrip /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private UploadMcpFeatureCollectionCommandMutationMutationDocument() @@ -148224,10 +152787,13 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { + /// mutation UploadMcpFeatureCollectionCommandMutation( + /// $input: UploadMcpFeatureCollectionInput! + /// ) { /// uploadMcpFeatureCollection(input: $input) { /// __typename /// mcpFeatureCollectionVersion { @@ -148278,19 +152844,19 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadMcpFeatureCollectionInputFormatter) + private UploadMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadMcpFeatureCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -148376,10 +152942,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { + /// mutation UploadMcpFeatureCollectionCommandMutation( + /// $input: UploadMcpFeatureCollectionInput! + /// ) { /// uploadMcpFeatureCollection(input: $input) { /// __typename /// mcpFeatureCollectionVersion { @@ -148430,7 +152999,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -148440,10 +153009,13 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl 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!) { + /// mutation ValidateMcpFeatureCollectionCommandMutation( + /// $input: ValidateMcpFeatureCollectionInput! + /// ) { /// validateMcpFeatureCollection(input: $input) { /// __typename /// id @@ -148480,7 +153052,7 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private ValidateMcpFeatureCollectionCommandMutationMutationDocument() @@ -148502,10 +153074,13 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { + /// mutation ValidateMcpFeatureCollectionCommandMutation( + /// $input: ValidateMcpFeatureCollectionInput! + /// ) { /// validateMcpFeatureCollection(input: $input) { /// __typename /// id @@ -148542,19 +153117,19 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateMcpFeatureCollectionInputFormatter) + private ValidateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateMcpFeatureCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -148640,10 +153215,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { + /// mutation ValidateMcpFeatureCollectionCommandMutation( + /// $input: ValidateMcpFeatureCollectionInput! + /// ) { /// validateMcpFeatureCollection(input: $input) { /// __typename /// id @@ -148680,7 +153258,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -148690,10 +153268,13 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : 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!) { + /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... McpFeatureCollectionVersionValidationFailed @@ -148781,7 +153362,7 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument { private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() @@ -148803,10 +153384,13 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { + /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... McpFeatureCollectionVersionValidationFailed @@ -148894,7 +153478,7 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -148941,10 +153525,13 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { + /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... McpFeatureCollectionVersionValidationFailed @@ -149032,16 +153619,23 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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!) { + /// 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 { @@ -149093,7 +153687,7 @@ public partial interface IValidateMcpFeatureCollectionCommandSubscriptionSubscri /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMockSchemaMutationDocument : global::StrawberryShake.IDocument { private CreateMockSchemaMutationDocument() @@ -149115,10 +153709,17 @@ private CreateMockSchemaMutationDocument() } } + // 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!) { + /// 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 { @@ -149170,14 +153771,14 @@ private CreateMockSchemaMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -149186,7 +153787,7 @@ public CreateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter uploadFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter) + 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; @@ -149304,10 +153905,17 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path } } + // 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!) { + /// 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 { @@ -149359,7 +153967,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -149369,10 +153977,15 @@ public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOp 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) { + /// query ListMockCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { @@ -149428,7 +154041,7 @@ public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOp /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMockCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListMockCommandQueryQueryDocument() @@ -149450,10 +154063,15 @@ private ListMockCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListMockCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { @@ -149509,14 +154127,14 @@ private ListMockCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMockCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -149525,7 +154143,7 @@ public ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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; @@ -149622,10 +154240,15 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListMockCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { @@ -149681,7 +154304,7 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery With(global::System.Action configure); @@ -149691,10 +154314,17 @@ public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IO 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 UpdateMockSchema GraphQL operation /// - /// mutation UpdateMockSchema($mockSchemaId: ID!, $baseSchemaFile: Upload, $downstreamUrl: String, $extensionsSchemaFile: Upload, $name: String) { + /// 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 { @@ -149745,7 +154375,7 @@ public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IO /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateMockSchemaMutationDocument : global::StrawberryShake.IDocument { private UpdateMockSchemaMutationDocument() @@ -149767,10 +154397,17 @@ private UpdateMockSchemaMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UpdateMockSchema GraphQL operation /// - /// mutation UpdateMockSchema($mockSchemaId: ID!, $baseSchemaFile: Upload, $downstreamUrl: String, $extensionsSchemaFile: Upload, $name: String) { + /// 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 { @@ -149821,14 +154458,14 @@ private UpdateMockSchemaMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateMockSchemaMutation : global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -149837,7 +154474,7 @@ public UpdateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFormatter, 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; @@ -149973,10 +154610,17 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the UpdateMockSchema GraphQL operation /// - /// mutation UpdateMockSchema($mockSchemaId: ID!, $baseSchemaFile: Upload, $downstreamUrl: String, $extensionsSchemaFile: Upload, $name: String) { + /// 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 { @@ -150027,7 +154671,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation With(global::System.Action configure); @@ -150037,10 +154681,13 @@ public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOp 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 CreateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionInput!) { + /// mutation CreateOpenApiCollectionCommandMutation( + /// $input: CreateOpenApiCollectionInput! + /// ) { /// createOpenApiCollection(input: $input) { /// __typename /// openApiCollection { @@ -150085,7 +154732,7 @@ public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOp /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateOpenApiCollectionCommandMutationMutationDocument() @@ -150107,10 +154754,13 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionInput!) { + /// mutation CreateOpenApiCollectionCommandMutation( + /// $input: CreateOpenApiCollectionInput! + /// ) { /// createOpenApiCollection(input: $input) { /// __typename /// openApiCollection { @@ -150155,19 +154805,19 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createOpenApiCollectionInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _createOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("CreateOpenApiCollectionInput"); } - private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createOpenApiCollectionInputFormatter) + private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createOpenApiCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -150236,10 +154886,13 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionInput!) { + /// mutation CreateOpenApiCollectionCommandMutation( + /// $input: CreateOpenApiCollectionInput! + /// ) { /// createOpenApiCollection(input: $input) { /// __typename /// openApiCollection { @@ -150284,7 +154937,7 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation With(global::System.Action configure); @@ -150294,10 +154947,13 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa 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 DeleteOpenApiCollectionByIdCommandMutation GraphQL operation /// - /// mutation DeleteOpenApiCollectionByIdCommandMutation($input: DeleteOpenApiCollectionByIdInput!) { + /// mutation DeleteOpenApiCollectionByIdCommandMutation( + /// $input: DeleteOpenApiCollectionByIdInput! + /// ) { /// deleteOpenApiCollectionById(input: $input) { /// __typename /// openApiCollection { @@ -150340,7 +154996,7 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteOpenApiCollectionByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument { private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() @@ -150362,10 +155018,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation /// - /// mutation DeleteOpenApiCollectionByIdCommandMutation($input: DeleteOpenApiCollectionByIdInput!) { + /// mutation DeleteOpenApiCollectionByIdCommandMutation( + /// $input: DeleteOpenApiCollectionByIdInput! + /// ) { /// deleteOpenApiCollectionById(input: $input) { /// __typename /// openApiCollection { @@ -150408,19 +155067,19 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteOpenApiCollectionByIdCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteOpenApiCollectionByIdInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _deleteOpenApiCollectionByIdInputFormatter = serializerResolver.GetInputValueFormatter("DeleteOpenApiCollectionByIdInput"); } - private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteOpenApiCollectionByIdInputFormatter) + private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteOpenApiCollectionByIdInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -150489,10 +155148,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation /// - /// mutation DeleteOpenApiCollectionByIdCommandMutation($input: DeleteOpenApiCollectionByIdInput!) { + /// mutation DeleteOpenApiCollectionByIdCommandMutation( + /// $input: DeleteOpenApiCollectionByIdInput! + /// ) { /// deleteOpenApiCollectionById(input: $input) { /// __typename /// openApiCollection { @@ -150535,7 +155197,7 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteOpenApiCollectionByIdCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation With(global::System.Action configure); @@ -150545,10 +155207,15 @@ public partial interface IDeleteOpenApiCollectionByIdCommandMutationMutation : g 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 ListOpenApiCollectionCommandQuery GraphQL operation /// - /// query ListOpenApiCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListOpenApiCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -150594,7 +155261,7 @@ public partial interface IDeleteOpenApiCollectionByIdCommandMutationMutation : g /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListOpenApiCollectionCommandQueryQueryDocument() @@ -150616,10 +155283,15 @@ private ListOpenApiCollectionCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListOpenApiCollectionCommandQuery GraphQL operation /// - /// query ListOpenApiCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListOpenApiCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -150665,14 +155337,14 @@ private ListOpenApiCollectionCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -150681,7 +155353,7 @@ public ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperation _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private ListOpenApiCollectionCommandQueryQuery(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; @@ -150778,10 +155450,15 @@ private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperatio } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ListOpenApiCollectionCommandQuery GraphQL operation /// - /// query ListOpenApiCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { + /// query ListOpenApiCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -150827,7 +155504,7 @@ private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperatio /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery With(global::System.Action configure); @@ -150837,10 +155514,13 @@ public partial interface IListOpenApiCollectionCommandQueryQuery : global::Straw 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 PublishOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { + /// mutation PublishOpenApiCollectionCommandMutation( + /// $input: PublishOpenApiCollectionInput! + /// ) { /// publishOpenApiCollection(input: $input) { /// __typename /// id @@ -150885,7 +155565,7 @@ public partial interface IListOpenApiCollectionCommandQueryQuery : global::Straw /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private PublishOpenApiCollectionCommandMutationMutationDocument() @@ -150907,10 +155587,13 @@ private PublishOpenApiCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PublishOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { + /// mutation PublishOpenApiCollectionCommandMutation( + /// $input: PublishOpenApiCollectionInput! + /// ) { /// publishOpenApiCollection(input: $input) { /// __typename /// id @@ -150955,19 +155638,19 @@ private PublishOpenApiCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishOpenApiCollectionInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _publishOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("PublishOpenApiCollectionInput"); } - private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishOpenApiCollectionInputFormatter) + private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishOpenApiCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -151036,10 +155719,13 @@ private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake. } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PublishOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { + /// mutation PublishOpenApiCollectionCommandMutation( + /// $input: PublishOpenApiCollectionInput! + /// ) { /// publishOpenApiCollection(input: $input) { /// __typename /// id @@ -151084,7 +155770,7 @@ private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake. /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation With(global::System.Action configure); @@ -151094,10 +155780,13 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the PublishOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { + /// subscription PublishOpenApiCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... OpenApiCollectionVersionPublishFailed @@ -151654,7 +156343,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument { private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() @@ -151676,10 +156365,13 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PublishOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { + /// subscription PublishOpenApiCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... OpenApiCollectionVersionPublishFailed @@ -152236,7 +156928,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -152283,10 +156975,13 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PublishOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { + /// subscription PublishOpenApiCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... OpenApiCollectionVersionPublishFailed @@ -152843,16 +157538,19 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPublishOpenApiCollectionCommandSubscriptionSubscription : 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 UploadOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { + /// mutation UploadOpenApiCollectionCommandMutation( + /// $input: UploadOpenApiCollectionInput! + /// ) { /// uploadOpenApiCollection(input: $input) { /// __typename /// openApiCollectionVersion { @@ -152903,7 +157601,7 @@ public partial interface IPublishOpenApiCollectionCommandSubscriptionSubscriptio /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private UploadOpenApiCollectionCommandMutationMutationDocument() @@ -152925,10 +157623,13 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { + /// mutation UploadOpenApiCollectionCommandMutation( + /// $input: UploadOpenApiCollectionInput! + /// ) { /// uploadOpenApiCollection(input: $input) { /// __typename /// openApiCollectionVersion { @@ -152979,19 +157680,19 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadOpenApiCollectionInputFormatter) + private UploadOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadOpenApiCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -153077,10 +157778,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { + /// mutation UploadOpenApiCollectionCommandMutation( + /// $input: UploadOpenApiCollectionInput! + /// ) { /// uploadOpenApiCollection(input: $input) { /// __typename /// openApiCollectionVersion { @@ -153131,7 +157835,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -153141,10 +157845,13 @@ public partial interface IUploadOpenApiCollectionCommandMutationMutation : globa 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 /// - /// mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { + /// mutation ValidateOpenApiCollectionCommandMutation( + /// $input: ValidateOpenApiCollectionInput! + /// ) { /// validateOpenApiCollection(input: $input) { /// __typename /// id @@ -153181,7 +157888,7 @@ public partial interface IUploadOpenApiCollectionCommandMutationMutation : globa /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { private ValidateOpenApiCollectionCommandMutationMutationDocument() @@ -153203,10 +157910,13 @@ private ValidateOpenApiCollectionCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { + /// mutation ValidateOpenApiCollectionCommandMutation( + /// $input: ValidateOpenApiCollectionInput! + /// ) { /// validateOpenApiCollection(input: $input) { /// __typename /// id @@ -153243,19 +157953,19 @@ private ValidateOpenApiCollectionCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateOpenApiCollectionInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public ValidateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _validateOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("ValidateOpenApiCollectionInput"); } - private ValidateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateOpenApiCollectionInputFormatter) + private ValidateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateOpenApiCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -153341,10 +158051,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { + /// mutation ValidateOpenApiCollectionCommandMutation( + /// $input: ValidateOpenApiCollectionInput! + /// ) { /// validateOpenApiCollection(input: $input) { /// __typename /// id @@ -153381,7 +158094,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation With(global::System.Action configure); @@ -153391,10 +158104,13 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the ValidateOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { + /// subscription ValidateOpenApiCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... OpenApiCollectionVersionValidationFailed @@ -153483,7 +158199,7 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument { private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() @@ -153505,10 +158221,13 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { + /// subscription ValidateOpenApiCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... OpenApiCollectionVersionValidationFailed @@ -153597,7 +158316,7 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -153644,10 +158363,13 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { + /// subscription ValidateOpenApiCollectionCommandSubscription( + /// $requestId: ID! + /// ) { /// onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... OpenApiCollectionVersionValidationFailed @@ -153736,16 +158458,19 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateOpenApiCollectionCommandSubscriptionSubscription : 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 CreatePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation CreatePersonalAccessTokenCommandMutation($input: CreatePersonalAccessTokenInput!) { + /// mutation CreatePersonalAccessTokenCommandMutation( + /// $input: CreatePersonalAccessTokenInput! + /// ) { /// createPersonalAccessToken(input: $input) { /// __typename /// result { @@ -153787,7 +158512,7 @@ public partial interface IValidateOpenApiCollectionCommandSubscriptionSubscripti /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreatePersonalAccessTokenCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreatePersonalAccessTokenCommandMutationMutationDocument() @@ -153809,10 +158534,13 @@ private CreatePersonalAccessTokenCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation CreatePersonalAccessTokenCommandMutation($input: CreatePersonalAccessTokenInput!) { + /// mutation CreatePersonalAccessTokenCommandMutation( + /// $input: CreatePersonalAccessTokenInput! + /// ) { /// createPersonalAccessToken(input: $input) { /// __typename /// result { @@ -153854,19 +158582,19 @@ private CreatePersonalAccessTokenCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreatePersonalAccessTokenCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createPersonalAccessTokenInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _createPersonalAccessTokenInputFormatter = serializerResolver.GetInputValueFormatter("CreatePersonalAccessTokenInput"); } - private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createPersonalAccessTokenInputFormatter) + private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createPersonalAccessTokenInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -153935,10 +158663,13 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation CreatePersonalAccessTokenCommandMutation($input: CreatePersonalAccessTokenInput!) { + /// mutation CreatePersonalAccessTokenCommandMutation( + /// $input: CreatePersonalAccessTokenInput! + /// ) { /// createPersonalAccessToken(input: $input) { /// __typename /// result { @@ -153980,7 +158711,7 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreatePersonalAccessTokenCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation With(global::System.Action configure); @@ -153990,10 +158721,14 @@ public partial interface ICreatePersonalAccessTokenCommandMutationMutation : glo 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 ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { + /// query ListPersonalAccessTokenCommandQuery( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// personalAccessTokens(after: $after, first: $first) { @@ -154041,7 +158776,7 @@ public partial interface ICreatePersonalAccessTokenCommandMutationMutation : glo /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListPersonalAccessTokenCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListPersonalAccessTokenCommandQueryQueryDocument() @@ -154063,10 +158798,14 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { + /// query ListPersonalAccessTokenCommandQuery( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// personalAccessTokens(after: $after, first: $first) { @@ -154114,13 +158853,13 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListPersonalAccessTokenCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -154128,7 +158867,7 @@ public ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperati _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, 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; @@ -154213,10 +158952,14 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { + /// query ListPersonalAccessTokenCommandQuery( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// personalAccessTokens(after: $after, first: $first) { @@ -154264,7 +159007,7 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListPersonalAccessTokenCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery With(global::System.Action configure); @@ -154274,10 +159017,13 @@ public partial interface IListPersonalAccessTokenCommandQueryQuery : global::Str 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 RevokePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation RevokePersonalAccessTokenCommandMutation($input: RevokePersonalAccessTokenInput!) { + /// mutation RevokePersonalAccessTokenCommandMutation( + /// $input: RevokePersonalAccessTokenInput! + /// ) { /// revokePersonalAccessToken(input: $input) { /// __typename /// personalAccessToken { @@ -154316,7 +159062,7 @@ public partial interface IListPersonalAccessTokenCommandQueryQuery : global::Str /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class RevokePersonalAccessTokenCommandMutationMutationDocument : global::StrawberryShake.IDocument { private RevokePersonalAccessTokenCommandMutationMutationDocument() @@ -154338,10 +159084,13 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation RevokePersonalAccessTokenCommandMutation($input: RevokePersonalAccessTokenInput!) { + /// mutation RevokePersonalAccessTokenCommandMutation( + /// $input: RevokePersonalAccessTokenInput! + /// ) { /// revokePersonalAccessToken(input: $input) { /// __typename /// personalAccessToken { @@ -154380,19 +159129,19 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class RevokePersonalAccessTokenCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _revokePersonalAccessTokenInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _revokePersonalAccessTokenInputFormatter = serializerResolver.GetInputValueFormatter("RevokePersonalAccessTokenInput"); } - private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter revokePersonalAccessTokenInputFormatter) + private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter revokePersonalAccessTokenInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -154461,10 +159210,13 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation RevokePersonalAccessTokenCommandMutation($input: RevokePersonalAccessTokenInput!) { + /// mutation RevokePersonalAccessTokenCommandMutation( + /// $input: RevokePersonalAccessTokenInput! + /// ) { /// revokePersonalAccessToken(input: $input) { /// __typename /// personalAccessToken { @@ -154503,7 +159255,7 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IRevokePersonalAccessTokenCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation With(global::System.Action configure); @@ -154513,10 +159265,13 @@ public partial interface IRevokePersonalAccessTokenCommandMutationMutation : glo 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 PublishSchemaVersion GraphQL operation /// - /// mutation PublishSchemaVersion($input: PublishSchemaInput!) { + /// mutation PublishSchemaVersion( + /// $input: PublishSchemaInput! + /// ) { /// publishSchema(input: $input) { /// __typename /// id @@ -154563,7 +159318,7 @@ public partial interface IRevokePersonalAccessTokenCommandMutationMutation : glo /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishSchemaVersionMutationDocument : global::StrawberryShake.IDocument { private PublishSchemaVersionMutationDocument() @@ -154585,10 +159340,13 @@ private PublishSchemaVersionMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PublishSchemaVersion GraphQL operation /// - /// mutation PublishSchemaVersion($input: PublishSchemaInput!) { + /// mutation PublishSchemaVersion( + /// $input: PublishSchemaInput! + /// ) { /// publishSchema(input: $input) { /// __typename /// id @@ -154635,19 +159393,19 @@ private PublishSchemaVersionMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishSchemaInputFormatter) + private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishSchemaInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -154716,10 +159474,13 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PublishSchemaVersion GraphQL operation /// - /// mutation PublishSchemaVersion($input: PublishSchemaInput!) { + /// mutation PublishSchemaVersion( + /// $input: PublishSchemaInput! + /// ) { /// publishSchema(input: $input) { /// __typename /// id @@ -154766,7 +159527,7 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -154776,10 +159537,13 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake 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!) { + /// subscription OnSchemaVersionPublishUpdated( + /// $requestId: ID! + /// ) { /// onSchemaVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... SchemaVersionPublishFailed @@ -155352,7 +160116,7 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionPublishUpdatedSubscriptionDocument : global::StrawberryShake.IDocument { private OnSchemaVersionPublishUpdatedSubscriptionDocument() @@ -155374,10 +160138,13 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation /// - /// subscription OnSchemaVersionPublishUpdated($requestId: ID!) { + /// subscription OnSchemaVersionPublishUpdated( + /// $requestId: ID! + /// ) { /// onSchemaVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... SchemaVersionPublishFailed @@ -155950,7 +160717,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionPublishUpdatedSubscription : global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -155997,10 +160764,13 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation /// - /// subscription OnSchemaVersionPublishUpdated($requestId: ID!) { + /// subscription OnSchemaVersionPublishUpdated( + /// $requestId: ID! + /// ) { /// onSchemaVersionPublishingUpdate(requestId: $requestId) { /// __typename /// ... SchemaVersionPublishFailed @@ -156573,16 +161343,19 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionPublishUpdatedSubscription : 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 UploadSchema GraphQL operation /// - /// mutation UploadSchema($input: UploadSchemaInput!) { + /// mutation UploadSchema( + /// $input: UploadSchemaInput! + /// ) { /// uploadSchema(input: $input) { /// __typename /// schemaVersion { @@ -156630,7 +161403,7 @@ public partial interface IOnSchemaVersionPublishUpdatedSubscription : global::St /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadSchemaMutationDocument : global::StrawberryShake.IDocument { private UploadSchemaMutationDocument() @@ -156652,10 +161425,13 @@ private UploadSchemaMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UploadSchema GraphQL operation /// - /// mutation UploadSchema($input: UploadSchemaInput!) { + /// mutation UploadSchema( + /// $input: UploadSchemaInput! + /// ) { /// uploadSchema(input: $input) { /// __typename /// schemaVersion { @@ -156703,19 +161479,19 @@ private UploadSchemaMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadSchemaMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadSchemaInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public UploadSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _uploadSchemaInputFormatter = serializerResolver.GetInputValueFormatter("UploadSchemaInput"); } - private UploadSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadSchemaInputFormatter) + private UploadSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadSchemaInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -156801,10 +161577,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the UploadSchema GraphQL operation /// - /// mutation UploadSchema($input: UploadSchemaInput!) { + /// mutation UploadSchema( + /// $input: UploadSchemaInput! + /// ) { /// uploadSchema(input: $input) { /// __typename /// schemaVersion { @@ -156852,7 +161631,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUploadSchemaMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation With(global::System.Action configure); @@ -156862,10 +161641,13 @@ public partial interface IUploadSchemaMutation : global::StrawberryShake.IOperat global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadSchemaInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the ValidateSchemaVersion GraphQL operation /// - /// mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { + /// mutation ValidateSchemaVersion( + /// $input: ValidateSchemaInput! + /// ) { /// validateSchema(input: $input) { /// __typename /// id @@ -156912,7 +161694,7 @@ public partial interface IUploadSchemaMutation : global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateSchemaVersionMutationDocument : global::StrawberryShake.IDocument { private ValidateSchemaVersionMutationDocument() @@ -156934,10 +161716,13 @@ private ValidateSchemaVersionMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateSchemaVersion GraphQL operation /// - /// mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { + /// mutation ValidateSchemaVersion( + /// $input: ValidateSchemaInput! + /// ) { /// validateSchema(input: $input) { /// __typename /// id @@ -156984,19 +161769,19 @@ private ValidateSchemaVersionMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateSchemaVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateSchemaInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public ValidateSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _validateSchemaInputFormatter = serializerResolver.GetInputValueFormatter("ValidateSchemaInput"); } - private ValidateSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateSchemaInputFormatter) + private ValidateSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateSchemaInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -157082,10 +161867,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateSchemaVersion GraphQL operation /// - /// mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { + /// mutation ValidateSchemaVersion( + /// $input: ValidateSchemaInput! + /// ) { /// validateSchema(input: $input) { /// __typename /// id @@ -157132,7 +161920,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateSchemaVersionMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation With(global::System.Action configure); @@ -157142,10 +161930,13 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the OnSchemaVersionValidationUpdated GraphQL operation /// - /// subscription OnSchemaVersionValidationUpdated($requestId: ID!) { + /// subscription OnSchemaVersionValidationUpdated( + /// $requestId: ID! + /// ) { /// onSchemaVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... SchemaVersionValidationFailed @@ -157642,7 +162433,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionValidationUpdatedSubscriptionDocument : global::StrawberryShake.IDocument { private OnSchemaVersionValidationUpdatedSubscriptionDocument() @@ -157664,10 +162455,13 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the OnSchemaVersionValidationUpdated GraphQL operation /// - /// subscription OnSchemaVersionValidationUpdated($requestId: ID!) { + /// subscription OnSchemaVersionValidationUpdated( + /// $requestId: ID! + /// ) { /// onSchemaVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... SchemaVersionValidationFailed @@ -158164,7 +162958,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionValidationUpdatedSubscription : global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -158211,10 +163005,13 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the OnSchemaVersionValidationUpdated GraphQL operation /// - /// subscription OnSchemaVersionValidationUpdated($requestId: ID!) { + /// subscription OnSchemaVersionValidationUpdated( + /// $requestId: ID! + /// ) { /// onSchemaVersionValidationUpdate(requestId: $requestId) { /// __typename /// ... SchemaVersionValidationFailed @@ -158711,16 +163508,19 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnSchemaVersionValidationUpdatedSubscription : 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 UpdateStages GraphQL operation /// - /// mutation UpdateStages($input: UpdateStagesInput!) { + /// mutation UpdateStages( + /// $input: UpdateStagesInput! + /// ) { /// updateStages(input: $input) { /// __typename /// api { @@ -158813,7 +163613,7 @@ public partial interface IOnSchemaVersionValidationUpdatedSubscription : global: /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateStagesMutationDocument : global::StrawberryShake.IDocument { private UpdateStagesMutationDocument() @@ -158835,10 +163635,13 @@ private UpdateStagesMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation UpdateStages($input: UpdateStagesInput!) { + /// mutation UpdateStages( + /// $input: UpdateStagesInput! + /// ) { /// updateStages(input: $input) { /// __typename /// api { @@ -158931,19 +163734,19 @@ private UpdateStagesMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateStagesMutation : global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _updateStagesInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _updateStagesInputFormatter = serializerResolver.GetInputValueFormatter("UpdateStagesInput"); } - private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateStagesInputFormatter) + private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateStagesInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -159012,10 +163815,13 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation UpdateStages($input: UpdateStagesInput!) { + /// mutation UpdateStages( + /// $input: UpdateStagesInput! + /// ) { /// updateStages(input: $input) { /// __typename /// api { @@ -159108,7 +163914,7 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation With(global::System.Action configure); @@ -159118,10 +163924,13 @@ public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperat 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 ListStagesQuery GraphQL operation /// - /// query ListStagesQuery($apiId: ID!) { + /// query ListStagesQuery( + /// $apiId: ID! + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -159158,7 +163967,7 @@ public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQueryQueryDocument : global::StrawberryShake.IDocument { private ListStagesQueryQueryDocument() @@ -159180,10 +163989,13 @@ private ListStagesQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// query ListStagesQuery($apiId: ID!) { + /// query ListStagesQuery( + /// $apiId: ID! + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -159220,19 +164032,19 @@ private ListStagesQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -159301,10 +164113,13 @@ private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// query ListStagesQuery($apiId: ID!) { + /// query ListStagesQuery( + /// $apiId: ID! + /// ) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -159341,7 +164156,7 @@ private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery With(global::System.Action configure); @@ -159351,10 +164166,13 @@ public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperat global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { + /// mutation CreateWorkspaceCommandMutation( + /// $input: CreateWorkspaceInput! + /// ) { /// createWorkspace(input: $input) { /// __typename /// workspace { @@ -159385,7 +164203,7 @@ public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateWorkspaceCommandMutationMutationDocument : global::StrawberryShake.IDocument { private CreateWorkspaceCommandMutationMutationDocument() @@ -159407,10 +164225,13 @@ private CreateWorkspaceCommandMutationMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { + /// mutation CreateWorkspaceCommandMutation( + /// $input: CreateWorkspaceInput! + /// ) { /// createWorkspace(input: $input) { /// __typename /// workspace { @@ -159441,19 +164262,19 @@ private CreateWorkspaceCommandMutationMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateWorkspaceCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createWorkspaceInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _createWorkspaceInputFormatter = serializerResolver.GetInputValueFormatter("CreateWorkspaceInput"); } - private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createWorkspaceInputFormatter) + private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createWorkspaceInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -159522,10 +164343,13 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { + /// mutation CreateWorkspaceCommandMutation( + /// $input: CreateWorkspaceInput! + /// ) { /// createWorkspace(input: $input) { /// __typename /// workspace { @@ -159556,7 +164380,7 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateWorkspaceCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation With(global::System.Action configure); @@ -159566,10 +164390,14 @@ public partial interface ICreateWorkspaceCommandMutationMutation : global::Straw 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 ListWorkspaceCommandQuery GraphQL operation /// - /// query ListWorkspaceCommandQuery($after: String, $first: Int) { + /// query ListWorkspaceCommandQuery( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// workspaces(after: $after, first: $first) { @@ -159615,7 +164443,7 @@ public partial interface ICreateWorkspaceCommandMutationMutation : global::Straw /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListWorkspaceCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ListWorkspaceCommandQueryQueryDocument() @@ -159637,10 +164465,14 @@ private ListWorkspaceCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation /// - /// query ListWorkspaceCommandQuery($after: String, $first: Int) { + /// query ListWorkspaceCommandQuery( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// workspaces(after: $after, first: $first) { @@ -159686,13 +164518,13 @@ private ListWorkspaceCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -159700,7 +164532,7 @@ public ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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; @@ -159785,10 +164617,14 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation /// - /// query ListWorkspaceCommandQuery($after: String, $first: Int) { + /// query ListWorkspaceCommandQuery( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// workspaces(after: $after, first: $first) { @@ -159834,7 +164670,7 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -159844,10 +164680,14 @@ public partial interface IListWorkspaceCommandQueryQuery : global::StrawberrySha 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) { + /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// workspaces(after: $after, first: $first) { @@ -159882,7 +164722,7 @@ public partial interface IListWorkspaceCommandQueryQuery : global::StrawberrySha /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument : global::StrawberryShake.IDocument { private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument() @@ -159904,10 +164744,14 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation /// - /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query($after: String, $first: Int) { + /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// workspaces(after: $after, first: $first) { @@ -159942,13 +164786,13 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -159956,7 +164800,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::StrawberryS _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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; @@ -160041,10 +164885,14 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::Strawberry } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation /// - /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query($after: String, $first: Int) { + /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query( + /// $after: String + /// $first: Int + /// ) { /// me { /// __typename /// workspaces(after: $after, first: $first) { @@ -160079,7 +164927,7 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::Strawberry /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -160089,10 +164937,13 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery 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!) { + /// query ShowWorkspaceCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... WorkspaceDetailPrompt_Workspace @@ -160106,7 +164957,7 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQueryQueryDocument : global::StrawberryShake.IDocument { private ShowWorkspaceCommandQueryQueryDocument() @@ -160128,10 +164979,13 @@ private ShowWorkspaceCommandQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// query ShowWorkspaceCommandQuery($workspaceId: ID!) { + /// query ShowWorkspaceCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... WorkspaceDetailPrompt_Workspace @@ -160145,19 +164999,19 @@ private ShowWorkspaceCommandQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -160226,10 +165080,13 @@ private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// query ShowWorkspaceCommandQuery($workspaceId: ID!) { + /// query ShowWorkspaceCommandQuery( + /// $workspaceId: ID! + /// ) { /// node(id: $workspaceId) { /// __typename /// ... WorkspaceDetailPrompt_Workspace @@ -160243,7 +165100,7 @@ private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -160253,10 +165110,15 @@ public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberrySha 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) { + /// query SelectApiPromptQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { @@ -160315,7 +165177,7 @@ public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberrySha /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectApiPromptQueryQueryDocument : global::StrawberryShake.IDocument { private SelectApiPromptQueryQueryDocument() @@ -160337,10 +165199,15 @@ private SelectApiPromptQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SelectApiPromptQuery GraphQL operation /// - /// query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query SelectApiPromptQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { @@ -160399,14 +165266,14 @@ private SelectApiPromptQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -160415,7 +165282,7 @@ public SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + 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; @@ -160512,10 +165379,15 @@ private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the SelectApiPromptQuery GraphQL operation /// - /// query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { + /// query SelectApiPromptQuery( + /// $workspaceId: ID! + /// $after: Version + /// $first: Int + /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { @@ -160574,7 +165446,7 @@ private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -160584,10 +165456,14 @@ public partial interface ISelectApiPromptQueryQuery : global::StrawberryShake.IO 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!) { + /// query PageClientVersionDetailQuery( + /// $id: ID! + /// $after: String! + /// ) { /// node(id: $id) { /// __typename /// ... on Client { @@ -160625,7 +165501,7 @@ public partial interface ISelectApiPromptQueryQuery : global::StrawberryShake.IO /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQueryQueryDocument : global::StrawberryShake.IDocument { private PageClientVersionDetailQueryQueryDocument() @@ -160647,10 +165523,14 @@ private PageClientVersionDetailQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query PageClientVersionDetailQuery($id: ID!, $after: String!) { + /// query PageClientVersionDetailQuery( + /// $id: ID! + /// $after: String! + /// ) { /// node(id: $id) { /// __typename /// ... on Client { @@ -160688,13 +165568,13 @@ private PageClientVersionDetailQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -160702,7 +165582,7 @@ public PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExecu _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } - private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + 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; @@ -160783,10 +165663,14 @@ private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExec } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query PageClientVersionDetailQuery($id: ID!, $after: String!) { + /// query PageClientVersionDetailQuery( + /// $id: ID! + /// $after: String! + /// ) { /// node(id: $id) { /// __typename /// ... on Client { @@ -160824,7 +165708,7 @@ private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExec /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -160834,10 +165718,15 @@ public partial interface IPageClientVersionDetailQueryQuery : global::Strawberry 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) { + /// query SelectClientPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// clients(after: $after, first: $first) { @@ -160915,7 +165804,7 @@ public partial interface IPageClientVersionDetailQueryQuery : global::Strawberry /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectClientPromptQueryQueryDocument : global::StrawberryShake.IDocument { private SelectClientPromptQueryQueryDocument() @@ -160937,10 +165826,15 @@ private SelectClientPromptQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectClientPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// clients(after: $after, first: $first) { @@ -161018,14 +165912,14 @@ private SelectClientPromptQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -161034,7 +165928,7 @@ public SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, 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; @@ -161131,10 +166025,15 @@ private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor< } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectClientPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// clients(after: $after, first: $first) { @@ -161212,7 +166111,7 @@ private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor< /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -161222,10 +166121,13 @@ public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake 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!) { + /// mutation BeginFusionConfigurationPublish( + /// $input: BeginFusionConfigurationPublishInput! + /// ) { /// beginFusionConfigurationPublish(input: $input) { /// __typename /// requestId @@ -161278,7 +166180,7 @@ public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class BeginFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { private BeginFusionConfigurationPublishMutationDocument() @@ -161300,10 +166202,13 @@ private BeginFusionConfigurationPublishMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation /// - /// mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { + /// mutation BeginFusionConfigurationPublish( + /// $input: BeginFusionConfigurationPublishInput! + /// ) { /// beginFusionConfigurationPublish(input: $input) { /// __typename /// requestId @@ -161356,19 +166261,19 @@ private BeginFusionConfigurationPublishMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter beginFusionConfigurationPublishInputFormatter) + private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter beginFusionConfigurationPublishInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -161437,10 +166342,13 @@ private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperati } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation /// - /// mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { + /// mutation BeginFusionConfigurationPublish( + /// $input: BeginFusionConfigurationPublishInput! + /// ) { /// beginFusionConfigurationPublish(input: $input) { /// __typename /// requestId @@ -161493,7 +166401,7 @@ private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IBeginFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation With(global::System.Action configure); @@ -161503,10 +166411,13 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the OnFusionConfigurationPublishingTaskChanged GraphQL operation /// - /// subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { + /// subscription OnFusionConfigurationPublishingTaskChanged( + /// $requestId: ID! + /// ) { /// onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { /// state /// __typename @@ -162083,7 +166994,7 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnFusionConfigurationPublishingTaskChangedSubscriptionDocument : global::StrawberryShake.IDocument { private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() @@ -162105,10 +167016,13 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the OnFusionConfigurationPublishingTaskChanged GraphQL operation /// - /// subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { + /// subscription OnFusionConfigurationPublishingTaskChanged( + /// $requestId: ID! + /// ) { /// onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { /// state /// __typename @@ -162685,7 +167599,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnFusionConfigurationPublishingTaskChangedSubscription : global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; @@ -162732,10 +167646,13 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the OnFusionConfigurationPublishingTaskChanged GraphQL operation /// - /// subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { + /// subscription OnFusionConfigurationPublishingTaskChanged( + /// $requestId: ID! + /// ) { /// onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { /// state /// __typename @@ -163312,16 +168229,19 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription : 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 CancelFusionConfigurationPublish GraphQL operation /// - /// mutation CancelFusionConfigurationPublish($input: CancelFusionConfigurationCompositionInput!) { + /// mutation CancelFusionConfigurationPublish( + /// $input: CancelFusionConfigurationCompositionInput! + /// ) { /// cancelFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -163357,7 +168277,7 @@ public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CancelFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { private CancelFusionConfigurationPublishMutationDocument() @@ -163379,10 +168299,13 @@ private CancelFusionConfigurationPublishMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation /// - /// mutation CancelFusionConfigurationPublish($input: CancelFusionConfigurationCompositionInput!) { + /// mutation CancelFusionConfigurationPublish( + /// $input: CancelFusionConfigurationCompositionInput! + /// ) { /// cancelFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -163418,19 +168341,19 @@ private CancelFusionConfigurationPublishMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter cancelFusionConfigurationCompositionInputFormatter) + private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter cancelFusionConfigurationCompositionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -163499,10 +168422,13 @@ private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperat } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation /// - /// mutation CancelFusionConfigurationPublish($input: CancelFusionConfigurationCompositionInput!) { + /// mutation CancelFusionConfigurationPublish( + /// $input: CancelFusionConfigurationCompositionInput! + /// ) { /// cancelFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -163538,7 +168464,7 @@ private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperat /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -163548,10 +168474,13 @@ public partial interface ICancelFusionConfigurationPublishMutation : global::Str 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!) { + /// mutation CommitFusionConfigurationPublish( + /// $input: CommitFusionConfigurationPublishInput! + /// ) { /// commitFusionConfigurationPublish(input: $input) { /// __typename /// errors { @@ -163587,7 +168516,7 @@ public partial interface ICancelFusionConfigurationPublishMutation : global::Str /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CommitFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { private CommitFusionConfigurationPublishMutationDocument() @@ -163609,10 +168538,13 @@ private CommitFusionConfigurationPublishMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation /// - /// mutation CommitFusionConfigurationPublish($input: CommitFusionConfigurationPublishInput!) { + /// mutation CommitFusionConfigurationPublish( + /// $input: CommitFusionConfigurationPublishInput! + /// ) { /// commitFusionConfigurationPublish(input: $input) { /// __typename /// errors { @@ -163648,19 +168580,19 @@ private CommitFusionConfigurationPublishMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter commitFusionConfigurationPublishInputFormatter) + private CommitFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter commitFusionConfigurationPublishInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -163746,10 +168678,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation /// - /// mutation CommitFusionConfigurationPublish($input: CommitFusionConfigurationPublishInput!) { + /// mutation CommitFusionConfigurationPublish( + /// $input: CommitFusionConfigurationPublishInput! + /// ) { /// commitFusionConfigurationPublish(input: $input) { /// __typename /// errors { @@ -163785,7 +168720,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -163795,10 +168730,13 @@ public partial interface ICommitFusionConfigurationPublishMutation : global::Str 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!) { + /// mutation StartFusionConfigurationPublish( + /// $input: StartFusionConfigurationCompositionInput! + /// ) { /// startFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -163834,7 +168772,7 @@ public partial interface ICommitFusionConfigurationPublishMutation : global::Str /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StartFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { private StartFusionConfigurationPublishMutationDocument() @@ -163856,10 +168794,13 @@ private StartFusionConfigurationPublishMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation /// - /// mutation StartFusionConfigurationPublish($input: StartFusionConfigurationCompositionInput!) { + /// mutation StartFusionConfigurationPublish( + /// $input: StartFusionConfigurationCompositionInput! + /// ) { /// startFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -163895,19 +168836,19 @@ private StartFusionConfigurationPublishMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter startFusionConfigurationCompositionInputFormatter) + private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter startFusionConfigurationCompositionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -163976,10 +168917,13 @@ private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperati } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation /// - /// mutation StartFusionConfigurationPublish($input: StartFusionConfigurationCompositionInput!) { + /// mutation StartFusionConfigurationPublish( + /// $input: StartFusionConfigurationCompositionInput! + /// ) { /// startFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -164015,7 +168959,7 @@ private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -164025,10 +168969,13 @@ public partial interface IStartFusionConfigurationPublishMutation : global::Stra 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 /// - /// mutation ValidateFusionConfigurationPublish($input: ValidateFusionConfigurationCompositionInput!) { + /// mutation ValidateFusionConfigurationPublish( + /// $input: ValidateFusionConfigurationCompositionInput! + /// ) { /// validateFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -164064,7 +169011,7 @@ public partial interface IStartFusionConfigurationPublishMutation : global::Stra /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { private ValidateFusionConfigurationPublishMutationDocument() @@ -164086,10 +169033,13 @@ private ValidateFusionConfigurationPublishMutationDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the ValidateFusionConfigurationPublish GraphQL operation /// - /// mutation ValidateFusionConfigurationPublish($input: ValidateFusionConfigurationCompositionInput!) { + /// mutation ValidateFusionConfigurationPublish( + /// $input: ValidateFusionConfigurationCompositionInput! + /// ) { /// validateFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -164125,19 +169075,19 @@ private ValidateFusionConfigurationPublishMutationDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation { private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateFusionConfigurationCompositionInputFormatter; - private readonly System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; public ValidateFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _validateFusionConfigurationCompositionInputFormatter = serializerResolver.GetInputValueFormatter("ValidateFusionConfigurationCompositionInput"); } - private ValidateFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateFusionConfigurationCompositionInputFormatter) + private ValidateFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateFusionConfigurationCompositionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -164223,10 +169173,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the ValidateFusionConfigurationPublish GraphQL operation /// - /// mutation ValidateFusionConfigurationPublish($input: ValidateFusionConfigurationCompositionInput!) { + /// mutation ValidateFusionConfigurationPublish( + /// $input: ValidateFusionConfigurationCompositionInput! + /// ) { /// validateFusionConfigurationComposition(input: $input) { /// __typename /// errors { @@ -164262,7 +169215,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IValidateFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation With(global::System.Action configure); @@ -164272,10 +169225,15 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationCompositionInput input, 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) { + /// query SelectMcpFeatureCollectionPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mcpFeatureCollections(after: $after, first: $first) { @@ -164319,7 +169277,7 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQueryQueryDocument : global::StrawberryShake.IDocument { private SelectMcpFeatureCollectionPromptQueryQueryDocument() @@ -164341,10 +169299,15 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation /// - /// query SelectMcpFeatureCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectMcpFeatureCollectionPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mcpFeatureCollections(after: $after, first: $first) { @@ -164388,14 +169351,14 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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)); @@ -164404,7 +169367,7 @@ public SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOpera _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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) { _operationExecutor = operationExecutor; _configure = configure; @@ -164501,10 +169464,15 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation /// - /// query SelectMcpFeatureCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectMcpFeatureCollectionPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mcpFeatureCollections(after: $after, first: $first) { @@ -164548,7 +169516,7 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery With(global::System.Action configure); @@ -164558,10 +169526,15 @@ public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::S 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 /// - /// query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectMockSchemaPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { @@ -164617,7 +169590,7 @@ public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::S /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMockSchemaPromptQueryQueryDocument : global::StrawberryShake.IDocument { private SelectMockSchemaPromptQueryQueryDocument() @@ -164639,10 +169612,15 @@ private SelectMockSchemaPromptQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectMockSchemaPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { @@ -164698,14 +169676,14 @@ private SelectMockSchemaPromptQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMockSchemaPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery { 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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -164714,7 +169692,7 @@ public SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecut _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, 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; @@ -164811,10 +169789,15 @@ 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) { + /// query SelectMockSchemaPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { @@ -164870,7 +169853,7 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery With(global::System.Action configure); @@ -164880,10 +169863,15 @@ public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryS 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 SelectOpenApiCollectionPromptQuery GraphQL operation /// - /// query SelectOpenApiCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectOpenApiCollectionPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// openApiCollections(after: $after, first: $first) { @@ -164927,7 +169915,7 @@ public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryS /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectOpenApiCollectionPromptQueryQueryDocument : global::StrawberryShake.IDocument { private SelectOpenApiCollectionPromptQueryQueryDocument() @@ -164949,10 +169937,15 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation /// - /// query SelectOpenApiCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectOpenApiCollectionPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// openApiCollections(after: $after, first: $first) { @@ -164996,14 +169989,14 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 System.Collections.Immutable.ImmutableArray> _configure = System.Collections.Immutable.ImmutableArray>.Empty; + 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) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); @@ -165012,7 +170005,7 @@ public SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperatio _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + 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) { _operationExecutor = operationExecutor; _configure = configure; @@ -165109,10 +170102,15 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati } } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation /// - /// query SelectOpenApiCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { + /// query SelectOpenApiCollectionPromptQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int + /// ) { /// apiById(id: $apiId) { /// __typename /// openApiCollections(after: $after, first: $first) { @@ -165156,7 +170154,7 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati /// } /// /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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); @@ -165166,10 +170164,11 @@ public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::Stra 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ApiClient : global::ChilliCream.Nitro.CommandLine.Client.IApiClient { private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation _createApiKeyCommandMutation; @@ -165386,10 +170385,11 @@ public ApiClient(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyComma public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery SelectOpenApiCollectionPromptQuery => _selectOpenApiCollectionPromptQuery; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ClientInterfaceGenerator /// /// Represents the ApiClient GraphQL client /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IApiClient { global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation CreateApiKeyCommandMutation { get; } @@ -165534,7 +170534,8 @@ public partial interface IApiClient namespace ChilliCream.Nitro.CommandLine.Client.State { - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiKeyCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateApiKeyCommandMutationResultFactory() @@ -165576,7 +170577,7 @@ public CreateApiKeyCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateApiKeyCommandMutation_CreateApiKey_Result returnValue = default !; - if (data?.__typename.Equals("ApiKeyWithSecret", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -165611,7 +170612,7 @@ public CreateApiKeyCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -165711,7 +170712,8 @@ public CreateApiKeyCommandMutationResult Create(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -165729,7 +170731,8 @@ public CreateApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiKeyCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public DeleteApiKeyCommandMutationResultFactory() @@ -165771,7 +170774,7 @@ public DeleteApiKeyCommandMutationResult Create(global::StrawberryShake.IOperati } IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey returnValue = default !; - if (data?.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) + 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)); } @@ -165791,7 +170794,7 @@ public DeleteApiKeyCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -165844,7 +170847,8 @@ public DeleteApiKeyCommandMutationResult Create(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiKeyCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public DeleteApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData deleteApiKey) @@ -165862,7 +170866,8 @@ public DeleteApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiKeyCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListApiKeyCommandQueryResultFactory() @@ -165889,7 +170894,7 @@ public ListApiKeyCommandQueryResult Create(global::StrawberryShake.IOperationRes } IListApiKeyCommandQuery_WorkspaceById returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new ListApiKeyCommandQuery_WorkspaceById_Workspace(MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys(data.ApiKeys)); } @@ -165909,7 +170914,7 @@ public ListApiKeyCommandQueryResult Create(global::StrawberryShake.IOperationRes } IListApiKeyCommandQuery_WorkspaceById_ApiKeys returnValue = default !; - if (data?.__typename.Equals("ApiKeysConnection", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -165975,7 +170980,7 @@ public ListApiKeyCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -166008,7 +171013,8 @@ public ListApiKeyCommandQueryResult Create(global::StrawberryShake.IOperationRes } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiKeyCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ListApiKeyCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) @@ -166026,7 +171032,8 @@ public ListApiKeyCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Cl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateApiCommandMutationResultFactory() @@ -166171,7 +171178,7 @@ public CreateApiCommandMutationResult Create(global::StrawberryShake.IOperationR } ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -166254,7 +171261,8 @@ public CreateApiCommandMutationResult Create(global::StrawberryShake.IOperationR } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -166272,7 +171280,8 @@ public CreateApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public DeleteApiCommandQueryResultFactory() @@ -166479,7 +171488,7 @@ public DeleteApiCommandQueryResult Create(global::StrawberryShake.IOperationResu } IDeleteApiCommandQuery_Node_Workspace_1 returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new DeleteApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException()); } @@ -166497,7 +171506,8 @@ public DeleteApiCommandQueryResult Create(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -166518,7 +171528,8 @@ public DeleteApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Cli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public DeleteApiCommandMutationResultFactory() @@ -166560,7 +171571,7 @@ public DeleteApiCommandMutationResult Create(global::StrawberryShake.IOperationR } IDeleteApiCommandMutation_DeleteApiById_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -166580,7 +171591,7 @@ public DeleteApiCommandMutationResult Create(global::StrawberryShake.IOperationR } ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -166667,7 +171678,8 @@ public DeleteApiCommandMutationResult Create(global::StrawberryShake.IOperationR } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public DeleteApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData deleteApiById) @@ -166685,7 +171697,8 @@ public DeleteApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListApiCommandQueryResultFactory() @@ -166712,7 +171725,7 @@ public ListApiCommandQueryResult Create(global::StrawberryShake.IOperationResult } IListApiCommandQuery_WorkspaceById returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new ListApiCommandQuery_WorkspaceById_Workspace(MapIListApiCommandQuery_WorkspaceById_Apis(data.Apis)); } @@ -166732,7 +171745,7 @@ public ListApiCommandQueryResult Create(global::StrawberryShake.IOperationResult } IListApiCommandQuery_WorkspaceById_Apis returnValue = default !; - if (data?.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -166798,7 +171811,7 @@ public ListApiCommandQueryResult Create(global::StrawberryShake.IOperationResult } ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -166861,7 +171874,8 @@ public ListApiCommandQueryResult Create(global::StrawberryShake.IOperationResult } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -166879,7 +171893,8 @@ public ListApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Clien } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SetApiSettingsCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SetApiSettingsCommandMutationResultFactory() @@ -166921,7 +171936,7 @@ public SetApiSettingsCommandMutationResult Create(global::StrawberryShake.IOpera } ISetApiSettingsCommandMutation_UpdateApiSettings_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -166941,7 +171956,7 @@ public SetApiSettingsCommandMutationResult Create(global::StrawberryShake.IOpera } ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -167024,7 +172039,8 @@ public SetApiSettingsCommandMutationResult Create(global::StrawberryShake.IOpera } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -167042,7 +172058,8 @@ public SetApiSettingsCommandMutationResultInfo(global::ChilliCream.Nitro.Command } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ShowApiCommandQueryResultFactory() @@ -167249,7 +172266,7 @@ public ShowApiCommandQueryResult Create(global::StrawberryShake.IOperationResult } ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -167297,7 +172314,8 @@ public ShowApiCommandQueryResult Create(global::StrawberryShake.IOperationResult } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -167318,7 +172336,8 @@ public ShowApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Clien } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateClientCommandMutationResultFactory() @@ -167360,7 +172379,7 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateClientCommandMutation_CreateClient_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Client", 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)); } @@ -167380,7 +172399,7 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -167400,7 +172419,7 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data?.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersionConnection", 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())); } @@ -167497,7 +172516,7 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati } ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -167565,7 +172584,8 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public CreateClientCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData createClient) @@ -167583,7 +172603,8 @@ public CreateClientCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteClientByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public DeleteClientByIdCommandMutationResultFactory() @@ -167625,7 +172646,7 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe } IDeleteClientByIdCommandMutation_DeleteClientById_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Client", 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)); } @@ -167645,7 +172666,7 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe } ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -167665,7 +172686,7 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe } ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data?.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersionConnection", 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())); } @@ -167762,7 +172783,7 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe } ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -167830,7 +172851,8 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -167848,7 +172870,8 @@ public DeleteClientByIdCommandMutationResultInfo(global::ChilliCream.Nitro.Comma } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListClientCommandQueryResultFactory() @@ -168055,7 +173078,7 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } IListClientCommandQuery_Node_Clients returnValue = default !; - if (data?.__typename.Equals("ClientsConnection", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -168121,7 +173144,7 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -168141,7 +173164,7 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data?.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersionConnection", 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())); } @@ -168238,7 +173261,7 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -168286,7 +173309,8 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ListClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) @@ -168307,7 +173331,8 @@ public ListClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Cl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishClientVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PublishClientVersionResultFactory() @@ -168390,7 +173415,8 @@ public PublishClientVersionResult Create(global::StrawberryShake.IOperationResul } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -168408,7 +173434,8 @@ public PublishClientVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionPublishUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { public OnClientVersionPublishUpdatedResultFactory() @@ -168551,7 +173578,7 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -169678,7 +174705,7 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -169830,7 +174857,7 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -170081,7 +175108,8 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionPublishUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo { public OnClientVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData onClientVersionPublishingUpdate) @@ -170099,7 +175127,8 @@ public OnClientVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.Command } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ShowClientCommandQueryResultFactory() @@ -170306,7 +175335,7 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -170326,7 +175355,7 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data?.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersionConnection", 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())); } @@ -170423,7 +175452,7 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -170456,7 +175485,8 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -170477,7 +175507,8 @@ public ShowClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Cl } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UnpublishClientResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UnpublishClientResultFactory() @@ -170519,7 +175550,7 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData } IUnpublishClient_UnpublishClient_ClientVersion returnValue = default !; - if (data?.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) { returnValue = new UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), MapIUnpublishClient_UnpublishClient_ClientVersion_Client(data.Client)); } @@ -170539,7 +175570,7 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData } IUnpublishClient_UnpublishClient_ClientVersion_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { returnValue = new UnpublishClient_UnpublishClient_ClientVersion_Client_Client(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -170604,7 +175635,8 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -170622,7 +175654,8 @@ public UnpublishClientResultInfo(global::ChilliCream.Nitro.CommandLine.Client.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadClientResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UploadClientResultFactory() @@ -170664,7 +175697,7 @@ public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInf } IUploadClient_UploadClient_ClientVersion returnValue = default !; - if (data?.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) { returnValue = new UploadClient_UploadClient_ClientVersion_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException()); } @@ -170729,7 +175762,8 @@ public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInf } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -170747,7 +175781,8 @@ public UploadClientResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateClientVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateClientVersionResultFactory() @@ -170826,7 +175861,8 @@ public ValidateClientVersionResult Create(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -170844,7 +175880,8 @@ public ValidateClientVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Cli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionValidationUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { public OnClientVersionValidationUpdatedResultFactory() @@ -170961,7 +175998,7 @@ public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOp } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -171072,7 +176109,8 @@ public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -171090,7 +176128,8 @@ public OnClientVersionValidationUpdatedResultInfo(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateEnvironmentCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateEnvironmentCommandMutationResultFactory() @@ -171235,7 +176274,7 @@ public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOp } ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -171288,7 +176327,8 @@ public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -171306,7 +176346,8 @@ public CreateEnvironmentCommandMutationResultInfo(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListEnvironmentCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListEnvironmentCommandQueryResultFactory() @@ -171333,7 +176374,7 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati } IListEnvironmentCommandQuery_WorkspaceById returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Workspace(MapIListEnvironmentCommandQuery_WorkspaceById_Environments(data.Environments)); } @@ -171353,7 +176394,7 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati } IListEnvironmentCommandQuery_WorkspaceById_Environments returnValue = default !; - if (data?.__typename.Equals("EnvironmentsConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("EnvironmentsConnection", global::System.StringComparison.Ordinal)) { returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection(MapIListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(data.Edges), MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } @@ -171419,7 +176460,7 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati } ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -171452,7 +176493,8 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -171470,7 +176512,8 @@ public ListEnvironmentCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowEnvironmentCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ShowEnvironmentCommandQueryResultFactory() @@ -171677,7 +176720,7 @@ public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati } ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } @@ -171695,7 +176738,8 @@ public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -171716,7 +176760,8 @@ public ShowEnvironmentCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class FetchConfigurationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public FetchConfigurationResultFactory() @@ -171743,7 +176788,7 @@ public FetchConfigurationResult Create(global::StrawberryShake.IOperationResultD } IFetchConfiguration_FusionConfigurationByApiId returnValue = default !; - if (data?.__typename.Equals("FusionConfiguration", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("FusionConfiguration", global::System.StringComparison.Ordinal)) { returnValue = new FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(data.DownloadUrl ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException()); } @@ -171761,7 +176806,8 @@ public FetchConfigurationResult Create(global::StrawberryShake.IOperationResultD } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class FetchConfigurationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public FetchConfigurationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? fusionConfigurationByApiId) @@ -171779,7 +176825,8 @@ public FetchConfigurationResultInfo(global::ChilliCream.Nitro.CommandLine.Client } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadFusionSubgraphResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UploadFusionSubgraphResultFactory() @@ -171821,7 +176868,7 @@ public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResul } IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion returnValue = default !; - if (data?.__typename.Equals("FusionSubgraphVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("FusionSubgraphVersion", global::System.StringComparison.Ordinal)) { returnValue = new UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion(data.Id ?? throw new global::System.ArgumentNullException()); } @@ -171886,7 +176933,8 @@ public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResul } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -171904,7 +176952,8 @@ public UploadFusionSubgraphResultInfo(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateMcpFeatureCollectionCommandMutationResultFactory() @@ -171946,7 +176995,7 @@ public CreateMcpFeatureCollectionCommandMutationResult Create(global::Strawberry } ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { returnValue = new CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } @@ -171999,7 +177048,8 @@ public CreateMcpFeatureCollectionCommandMutationResult Create(global::Strawberry } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public CreateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData createMcpFeatureCollection) @@ -172017,7 +177067,8 @@ public CreateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.N } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public DeleteMcpFeatureCollectionByIdCommandMutationResultFactory() @@ -172059,7 +177110,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::Strawb } IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { returnValue = new DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } @@ -172112,7 +177163,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::Strawb } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData deleteMcpFeatureCollectionById) @@ -172130,7 +177182,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(global::ChilliCre } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListMcpFeatureCollectionCommandQueryResultFactory() @@ -172337,7 +177390,7 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake } IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections returnValue = default !; - if (data?.__typename.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ApiMcpFeatureCollectionsConnection", 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())); } @@ -172416,7 +177469,8 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -172437,7 +177491,8 @@ public ListMcpFeatureCollectionCommandQueryResultInfo(global::ChilliCream.Nitro. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PublishMcpFeatureCollectionCommandMutationResultFactory() @@ -172520,7 +177575,8 @@ public PublishMcpFeatureCollectionCommandMutationResult Create(global::Strawberr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public PublishMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData publishMcpFeatureCollection) @@ -172538,7 +177594,8 @@ public PublishMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PublishMcpFeatureCollectionCommandSubscriptionResultFactory() @@ -172712,7 +177769,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -172900,7 +177957,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -173960,7 +179017,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -174211,7 +179268,8 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo { public PublishMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData onMcpFeatureCollectionVersionPublishingUpdate) @@ -174229,7 +179287,8 @@ public PublishMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UploadMcpFeatureCollectionCommandMutationResultFactory() @@ -174271,7 +179330,7 @@ public UploadMcpFeatureCollectionCommandMutationResult Create(global::Strawberry } IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal)) { returnValue = new UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion(data.Id ?? throw new global::System.ArgumentNullException()); } @@ -174336,7 +179395,8 @@ public UploadMcpFeatureCollectionCommandMutationResult Create(global::Strawberry } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -174354,7 +179414,8 @@ public UploadMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.N } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateMcpFeatureCollectionCommandMutationResultFactory() @@ -174433,7 +179494,8 @@ public ValidateMcpFeatureCollectionCommandMutationResult Create(global::Strawber } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ValidateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData validateMcpFeatureCollection) @@ -174451,7 +179513,8 @@ public ValidateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateMcpFeatureCollectionCommandSubscriptionResultFactory() @@ -174603,7 +179666,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -174722,7 +179785,8 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData onMcpFeatureCollectionVersionValidationUpdate) @@ -174740,7 +179804,8 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliC } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateMockSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateMockSchemaResultFactory() @@ -174782,7 +179847,7 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat } ICreateMockSchema_CreateMockSchema_MockSchema returnValue = default !; - if (data?.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("MockSchema", 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()); } @@ -174873,7 +179938,8 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -174891,7 +179957,8 @@ public CreateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMockCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListMockCommandQueryResultFactory() @@ -174918,7 +179985,7 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul } IListMockCommandQuery_ApiById returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { returnValue = new ListMockCommandQuery_ApiById_Api(MapIListMockCommandQuery_ApiById_MockSchemas(data.MockSchemas)); } @@ -174938,7 +180005,7 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul } IListMockCommandQuery_ApiById_MockSchemas returnValue = default !; - if (data?.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal)) { returnValue = new ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(MapIListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(data.Edges), MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } @@ -175047,7 +180114,8 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -175065,7 +180133,8 @@ public ListMockCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateMockSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UpdateMockSchemaResultFactory() @@ -175107,7 +180176,7 @@ public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat } IUpdateMockSchema_UpdateMockSchema_MockSchema returnValue = default !; - if (data?.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) { 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()); } @@ -175198,7 +180267,8 @@ public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateMockSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo { public UpdateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData updateMockSchema) @@ -175216,7 +180286,8 @@ public UpdateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.S } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateOpenApiCollectionCommandMutationResultFactory() @@ -175258,7 +180329,7 @@ public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberrySha } ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { returnValue = new CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } @@ -175311,7 +180382,8 @@ public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberrySha } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -175329,7 +180401,8 @@ public CreateOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteOpenApiCollectionByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public DeleteOpenApiCollectionByIdCommandMutationResultFactory() @@ -175371,7 +180444,7 @@ public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::Strawberr } IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { returnValue = new DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } @@ -175424,7 +180497,8 @@ public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::Strawberr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -175442,7 +180516,8 @@ public DeleteOpenApiCollectionByIdCommandMutationResultInfo(global::ChilliCream. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListOpenApiCollectionCommandQueryResultFactory() @@ -175649,7 +180724,7 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO } IListOpenApiCollectionCommandQuery_Node_OpenApiCollections returnValue = default !; - if (data?.__typename.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ApiOpenApiCollectionsConnection", 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())); } @@ -175728,7 +180803,8 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ListOpenApiCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) @@ -175749,7 +180825,8 @@ public ListOpenApiCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.Com } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PublishOpenApiCollectionCommandMutationResultFactory() @@ -175832,7 +180909,8 @@ public PublishOpenApiCollectionCommandMutationResult Create(global::StrawberrySh } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public PublishOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData publishOpenApiCollection) @@ -175850,7 +180928,8 @@ public PublishOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nit } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PublishOpenApiCollectionCommandSubscriptionResultFactory() @@ -176024,7 +181103,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -176212,7 +181291,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -177272,7 +182351,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -177523,7 +182602,8 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -177541,7 +182621,8 @@ public PublishOpenApiCollectionCommandSubscriptionResultInfo(global::ChilliCream } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UploadOpenApiCollectionCommandMutationResultFactory() @@ -177583,7 +182664,7 @@ public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberrySha } IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion returnValue = default !; - if (data?.__typename.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal)) { returnValue = new UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion(data.Id ?? throw new global::System.ArgumentNullException()); } @@ -177648,7 +182729,8 @@ public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberrySha } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -177666,7 +182748,8 @@ public UploadOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateOpenApiCollectionCommandMutationResultFactory() @@ -177745,7 +182828,8 @@ public ValidateOpenApiCollectionCommandMutationResult Create(global::StrawberryS } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -177763,7 +182847,8 @@ public ValidateOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Ni } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateOpenApiCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateOpenApiCollectionCommandSubscriptionResultFactory() @@ -177915,7 +183000,7 @@ public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::Strawbe } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -178034,7 +183119,8 @@ public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::Strawbe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -178052,7 +183138,8 @@ public ValidateOpenApiCollectionCommandSubscriptionResultInfo(global::ChilliCrea } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreatePersonalAccessTokenCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreatePersonalAccessTokenCommandMutationResultFactory() @@ -178094,7 +183181,7 @@ public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryS } ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result returnValue = default !; - if (data?.__typename.Equals("PersonalAccessTokenWithSecret", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -178162,7 +183249,8 @@ public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryS } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreatePersonalAccessTokenCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public CreatePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData createPersonalAccessToken) @@ -178180,7 +183268,8 @@ public CreatePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Ni } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListPersonalAccessTokenCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListPersonalAccessTokenCommandQueryResultFactory() @@ -178207,7 +183296,7 @@ public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake. } IListPersonalAccessTokenCommandQuery_Me returnValue = default !; - if (data?.__typename.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) { returnValue = new ListPersonalAccessTokenCommandQuery_Me_Viewer(MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(data.PersonalAccessTokens)); } @@ -178227,7 +183316,7 @@ public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake. } IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens returnValue = default !; - if (data?.__typename.Equals("PersonalAccessTokensConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("PersonalAccessTokensConnection", 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())); } @@ -178306,7 +183395,8 @@ public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListPersonalAccessTokenCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ListPersonalAccessTokenCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) @@ -178324,7 +183414,8 @@ public ListPersonalAccessTokenCommandQueryResultInfo(global::ChilliCream.Nitro.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class RevokePersonalAccessTokenCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public RevokePersonalAccessTokenCommandMutationResultFactory() @@ -178366,7 +183457,7 @@ public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryS } IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken returnValue = default !; - if (data?.__typename.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("PersonalAccessToken", 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()); } @@ -178419,7 +183510,8 @@ public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryS } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class RevokePersonalAccessTokenCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { public RevokePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData revokePersonalAccessToken) @@ -178437,7 +183529,8 @@ public RevokePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Ni } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishSchemaVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PublishSchemaVersionResultFactory() @@ -178520,7 +183613,8 @@ public PublishSchemaVersionResult Create(global::StrawberryShake.IOperationResul } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishSchemaVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo { public PublishSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData publishSchema) @@ -178538,7 +183632,8 @@ public PublishSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionPublishUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { public OnSchemaVersionPublishUpdatedResultFactory() @@ -178782,7 +183877,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -178934,7 +184029,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -179055,7 +184150,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -180367,7 +185462,8 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionPublishUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo { public OnSchemaVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData onSchemaVersionPublishingUpdate) @@ -180385,7 +185481,8 @@ public OnSchemaVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.Command } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UploadSchemaResultFactory() @@ -180427,7 +185524,7 @@ public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInf } IUploadSchema_UploadSchema_SchemaVersion returnValue = default !; - if (data?.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal)) { returnValue = new UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(data.Id ?? throw new global::System.ArgumentNullException()); } @@ -180488,7 +185585,8 @@ public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInf } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UploadSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo { public UploadSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData uploadSchema) @@ -180506,7 +185604,8 @@ public UploadSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateSchemaVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateSchemaVersionResultFactory() @@ -180589,7 +185688,8 @@ public ValidateSchemaVersionResult Create(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateSchemaVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ValidateSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData validateSchema) @@ -180607,7 +185707,8 @@ public ValidateSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Cli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionValidationUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { public OnSchemaVersionValidationUpdatedResultFactory() @@ -180825,7 +185926,7 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -180977,7 +186078,7 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -181098,7 +186199,7 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -182164,7 +187265,8 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -182182,7 +187284,8 @@ public OnSchemaVersionValidationUpdatedResultInfo(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class UpdateStagesResultFactory : global::StrawberryShake.IOperationResultDataFactory { public UpdateStagesResultFactory() @@ -182224,7 +187327,7 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf } IUpdateStages_UpdateStages_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { returnValue = new UpdateStages_UpdateStages_Api_Api(MapNonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(data.Stages ?? throw new global::System.ArgumentNullException())); } @@ -182306,7 +187409,7 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf } IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -182400,7 +187503,7 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf } IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema returnValue = default !; - if (data?.__typename.Equals("PublishedSchemaVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("PublishedSchemaVersion", global::System.StringComparison.Ordinal)) { returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion(MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(data.Version)); } @@ -182420,7 +187523,7 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf } IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version returnValue = default !; - if (data?.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal)) { returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion(data.Tag ?? throw new global::System.ArgumentNullException()); } @@ -182517,7 +187620,7 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf } IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version returnValue = default !; - if (data?.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -182535,7 +187638,8 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -182553,7 +187657,8 @@ public UpdateStagesResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListStagesQueryResultFactory() @@ -182822,7 +187927,7 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData } IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -182840,7 +187945,8 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -182861,7 +187967,8 @@ public ListStagesQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.St } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateWorkspaceCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CreateWorkspaceCommandMutationResultFactory() @@ -182903,7 +188010,7 @@ public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOper } ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -182956,7 +188063,8 @@ public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOper } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -182974,7 +188082,8 @@ public CreateWorkspaceCommandMutationResultInfo(global::ChilliCream.Nitro.Comman } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListWorkspaceCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ListWorkspaceCommandQueryResultFactory() @@ -183001,7 +188110,7 @@ public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation } IListWorkspaceCommandQuery_Me returnValue = default !; - if (data?.__typename.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) { returnValue = new ListWorkspaceCommandQuery_Me_Viewer(MapIListWorkspaceCommandQuery_Me_Workspaces(data.Workspaces)); } @@ -183021,7 +188130,7 @@ public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation } IListWorkspaceCommandQuery_Me_Workspaces returnValue = default !; - if (data?.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("WorkspacesConnection", 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())); } @@ -183100,7 +188209,8 @@ public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListWorkspaceCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ListWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) @@ -183118,7 +188228,8 @@ public ListWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory() @@ -183145,7 +188256,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str } ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me returnValue = default !; - if (data?.__typename.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) { returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(data.Workspaces)); } @@ -183165,7 +188276,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str } ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces returnValue = default !; - if (data?.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal)) { 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())); } @@ -183244,7 +188355,8 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -183262,7 +188374,8 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(global::Chilli } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ShowWorkspaceCommandQueryResultFactory() @@ -183472,7 +188585,8 @@ public ShowWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -183493,7 +188607,8 @@ public ShowWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectApiPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SelectApiPromptQueryResultFactory() @@ -183520,7 +188635,7 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul } ISelectApiPromptQuery_WorkspaceById returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { returnValue = new SelectApiPromptQuery_WorkspaceById_Workspace(MapISelectApiPromptQuery_WorkspaceById_Apis(data.Apis)); } @@ -183540,7 +188655,7 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul } ISelectApiPromptQuery_WorkspaceById_Apis returnValue = default !; - if (data?.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal)) { returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(MapISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(data.Edges), MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } @@ -183606,7 +188721,7 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul } ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data?.__typename.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -183669,7 +188784,8 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -183687,7 +188803,8 @@ public SelectApiPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Clie } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public PageClientVersionDetailQueryResultFactory() @@ -183894,7 +189011,7 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat } IPageClientVersionDetailQuery_Node_Versions returnValue = default !; - if (data?.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + 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)); } @@ -184006,7 +189123,7 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat } ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -184024,7 +189141,8 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public PageClientVersionDetailQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) @@ -184045,7 +189163,8 @@ public PageClientVersionDetailQueryResultInfo(global::ChilliCream.Nitro.CommandL } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectClientPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SelectClientPromptQueryResultFactory() @@ -184072,7 +189191,7 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe } ISelectClientPromptQuery_ApiById returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { returnValue = new SelectClientPromptQuery_ApiById_Api(MapISelectClientPromptQuery_ApiById_Clients(data.Clients)); } @@ -184092,7 +189211,7 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe } ISelectClientPromptQuery_ApiById_Clients returnValue = default !; - if (data?.__typename.Equals("ClientsConnection", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -184158,7 +189277,7 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe } ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -184178,7 +189297,7 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe } ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data?.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ClientVersionConnection", 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())); } @@ -184275,7 +189394,7 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe } ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data?.__typename.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -184323,7 +189442,8 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectClientPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public SelectClientPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) @@ -184341,7 +189461,8 @@ public SelectClientPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.C } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class BeginFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { public BeginFusionConfigurationPublishResultFactory() @@ -184428,7 +189549,8 @@ public BeginFusionConfigurationPublishResult Create(global::StrawberryShake.IOpe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class BeginFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo { public BeginFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.BeginFusionConfigurationPublishPayloadData beginFusionConfigurationPublish) @@ -184446,7 +189568,8 @@ public BeginFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.Comma } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnFusionConfigurationPublishingTaskChangedResultFactory : global::StrawberryShake.IOperationResultDataFactory { public OnFusionConfigurationPublishingTaskChangedResultFactory() @@ -184739,7 +189862,7 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data?.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -184891,7 +190014,7 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data?.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -185012,7 +190135,7 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr } IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data?.__typename.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + 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()); } @@ -186441,7 +191564,8 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnFusionConfigurationPublishingTaskChangedResultInfo : global::StrawberryShake.IOperationResultDataInfo { public OnFusionConfigurationPublishingTaskChangedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationPublishingResultData onFusionConfigurationPublishingTaskChanged) @@ -186459,7 +191583,8 @@ public OnFusionConfigurationPublishingTaskChangedResultInfo(global::ChilliCream. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CancelFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CancelFusionConfigurationPublishResultFactory() @@ -186538,7 +191663,8 @@ public CancelFusionConfigurationPublishResult Create(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -186556,7 +191682,8 @@ public CancelFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CommitFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { public CommitFusionConfigurationPublishResultFactory() @@ -186635,7 +191762,8 @@ public CommitFusionConfigurationPublishResult Create(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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) @@ -186653,7 +191781,8 @@ public CommitFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.Comm } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StartFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { public StartFusionConfigurationPublishResultFactory() @@ -186732,7 +191861,8 @@ public StartFusionConfigurationPublishResult Create(global::StrawberryShake.IOpe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class StartFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo { public StartFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData startFusionConfigurationComposition) @@ -186750,7 +191880,8 @@ public StartFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.Comma } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { public ValidateFusionConfigurationPublishResultFactory() @@ -186829,7 +191960,8 @@ public ValidateFusionConfigurationPublishResult Create(global::StrawberryShake.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo { public ValidateFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData validateFusionConfigurationComposition) @@ -186847,7 +191979,8 @@ public ValidateFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.Co } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SelectMcpFeatureCollectionPromptQueryResultFactory() @@ -186874,7 +192007,7 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak } ISelectMcpFeatureCollectionPromptQuery_ApiById returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_Api(MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(data.McpFeatureCollections)); } @@ -186894,7 +192027,7 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak } ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections returnValue = default !; - if (data?.__typename.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ApiMcpFeatureCollectionsConnection", 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())); } @@ -186973,7 +192106,8 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMcpFeatureCollectionPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public SelectMcpFeatureCollectionPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) @@ -186991,7 +192125,8 @@ public SelectMcpFeatureCollectionPromptQueryResultInfo(global::ChilliCream.Nitro } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMockSchemaPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SelectMockSchemaPromptQueryResultFactory() @@ -187018,7 +192153,7 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati } ISelectMockSchemaPromptQuery_ApiById returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { returnValue = new SelectMockSchemaPromptQuery_ApiById_Api(MapISelectMockSchemaPromptQuery_ApiById_MockSchemas(data.MockSchemas)); } @@ -187038,7 +192173,7 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati } ISelectMockSchemaPromptQuery_ApiById_MockSchemas returnValue = default !; - if (data?.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal) ?? false) + 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())); } @@ -187147,7 +192282,8 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectMockSchemaPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public SelectMockSchemaPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) @@ -187165,7 +192301,8 @@ public SelectMockSchemaPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLi } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectOpenApiCollectionPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { public SelectOpenApiCollectionPromptQueryResultFactory() @@ -187192,7 +192329,7 @@ public SelectOpenApiCollectionPromptQueryResult Create(global::StrawberryShake.I } ISelectOpenApiCollectionPromptQuery_ApiById returnValue = default !; - if (data?.__typename.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { returnValue = new SelectOpenApiCollectionPromptQuery_ApiById_Api(MapISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections(data.OpenApiCollections)); } @@ -187212,7 +192349,7 @@ public SelectOpenApiCollectionPromptQueryResult Create(global::StrawberryShake.I } ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections returnValue = default !; - if (data?.__typename.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + if (data.__typename.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal)) { returnValue = new SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection(MapISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_EdgesNonNullableArray(data.Edges), MapNonNullableISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } @@ -187291,7 +192428,8 @@ public SelectOpenApiCollectionPromptQueryResult Create(global::StrawberryShake.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectOpenApiCollectionPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { public SelectOpenApiCollectionPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) @@ -187309,7 +192447,8 @@ public SelectOpenApiCollectionPromptQueryResultInfo(global::ChilliCream.Nitro.Co } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICreateApiKeyInputInfo { global::System.Boolean IsNameSet { get; } @@ -187321,7 +192460,8 @@ internal interface ICreateApiKeyInputInfo global::System.Boolean IsWorkspaceIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IApiKeyPermissionScopeInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187329,25 +192469,29 @@ internal interface IApiKeyPermissionScopeInputInfo global::System.Boolean IsWorkspaceIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IRoleAssigmentConditionInputInfo { global::System.Boolean IsStageAuthorizationConditionSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUpdateApiSettingsInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187355,13 +192499,15 @@ internal interface IUpdateApiSettingsInputInfo global::System.Boolean IsSettingsSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IPartialApiSettingsInputInfo { global::System.Boolean IsSchemaRegistrySet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IPartialSchemaRegistrySettingsInputInfo { global::System.Boolean IsAllowBreakingSchemaChangesSet { get; } @@ -187369,7 +192515,8 @@ internal interface IPartialSchemaRegistrySettingsInputInfo global::System.Boolean IsTreatDangerousAsBreakingSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICreateClientInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187377,13 +192524,15 @@ internal interface ICreateClientInputInfo global::System.Boolean IsNameSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IDeleteClientByIdInputInfo { global::System.Boolean IsClientIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IPublishClientInputInfo { global::System.Boolean IsClientIdSet { get; } @@ -187397,7 +192546,8 @@ internal interface IPublishClientInputInfo global::System.Boolean IsWaitForApprovalSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUnpublishClientInputInfo { global::System.Boolean IsClientIdSet { get; } @@ -187407,7 +192557,8 @@ internal interface IUnpublishClientInputInfo global::System.Boolean IsTagSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUploadClientInputInfo { global::System.Boolean IsClientIdSet { get; } @@ -187417,7 +192568,8 @@ internal interface IUploadClientInputInfo global::System.Boolean IsTagSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IValidateClientInputInfo { global::System.Boolean IsClientIdSet { get; } @@ -187427,7 +192579,8 @@ internal interface IValidateClientInputInfo global::System.Boolean IsStageSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUploadFusionSubgraphInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187437,7 +192590,8 @@ internal interface IUploadFusionSubgraphInputInfo global::System.Boolean IsTagSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICreateMcpFeatureCollectionInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187445,13 +192599,15 @@ internal interface ICreateMcpFeatureCollectionInputInfo global::System.Boolean IsNameSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IDeleteMcpFeatureCollectionByIdInputInfo { global::System.Boolean IsMcpFeatureCollectionIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IPublishMcpFeatureCollectionInputInfo { global::System.Boolean IsForceSet { get; } @@ -187465,7 +192621,8 @@ internal interface IPublishMcpFeatureCollectionInputInfo global::System.Boolean IsWaitForApprovalSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUploadMcpFeatureCollectionInputInfo { global::System.Boolean IsCollectionSet { get; } @@ -187475,7 +192632,8 @@ internal interface IUploadMcpFeatureCollectionInputInfo global::System.Boolean IsTagSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IValidateMcpFeatureCollectionInputInfo { global::System.Boolean IsCollectionSet { get; } @@ -187485,7 +192643,8 @@ internal interface IValidateMcpFeatureCollectionInputInfo global::System.Boolean IsStageSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICreateOpenApiCollectionInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187493,13 +192652,15 @@ internal interface ICreateOpenApiCollectionInputInfo global::System.Boolean IsNameSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IDeleteOpenApiCollectionByIdInputInfo { global::System.Boolean IsOpenApiCollectionIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IPublishOpenApiCollectionInputInfo { global::System.Boolean IsForceSet { get; } @@ -187513,7 +192674,8 @@ internal interface IPublishOpenApiCollectionInputInfo global::System.Boolean IsWaitForApprovalSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUploadOpenApiCollectionInputInfo { global::System.Boolean IsCollectionSet { get; } @@ -187523,7 +192685,8 @@ internal interface IUploadOpenApiCollectionInputInfo global::System.Boolean IsTagSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IValidateOpenApiCollectionInputInfo { global::System.Boolean IsCollectionSet { get; } @@ -187533,7 +192696,8 @@ internal interface IValidateOpenApiCollectionInputInfo global::System.Boolean IsStageSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICreatePersonalAccessTokenInputInfo { global::System.Boolean IsDescriptionSet { get; } @@ -187541,13 +192705,15 @@ internal interface ICreatePersonalAccessTokenInputInfo global::System.Boolean IsExpiresAtSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IRevokePersonalAccessTokenInputInfo { global::System.Boolean IsIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IPublishSchemaInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187561,7 +192727,8 @@ internal interface IPublishSchemaInputInfo global::System.Boolean IsWaitForApprovalSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUploadSchemaInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187571,7 +192738,8 @@ internal interface IUploadSchemaInputInfo global::System.Boolean IsTagSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IValidateSchemaInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187581,7 +192749,8 @@ internal interface IValidateSchemaInputInfo global::System.Boolean IsStageSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IUpdateStagesInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187589,7 +192758,8 @@ internal interface IUpdateStagesInputInfo global::System.Boolean IsUpdatedStagesSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IStageUpdateInputInfo { global::System.Boolean IsConditionsSet { get; } @@ -187599,19 +192769,22 @@ internal interface IStageUpdateInputInfo global::System.Boolean IsNameSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IStageConditionUpdateInputInfo { global::System.Boolean IsAfterStageSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICreateWorkspaceInputInfo { global::System.Boolean IsNameSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IBeginFusionConfigurationPublishInputInfo { global::System.Boolean IsApiIdSet { get; } @@ -187627,13 +192800,15 @@ internal interface IBeginFusionConfigurationPublishInputInfo global::System.Boolean IsWaitForApprovalSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICancelFusionConfigurationCompositionInputInfo { global::System.Boolean IsRequestIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface ICommitFusionConfigurationPublishInputInfo { global::System.Boolean IsConfigurationSet { get; } @@ -187641,13 +192816,15 @@ internal interface ICommitFusionConfigurationPublishInputInfo global::System.Boolean IsRequestIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] internal interface IValidateFusionConfigurationCompositionInputInfo { global::System.Boolean IsConfigurationSet { get; } @@ -187655,7 +192832,8 @@ internal interface IValidateFusionConfigurationCompositionInputInfo global::System.Boolean IsRequestIdSet { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -187883,7 +193061,8 @@ public CreateApiKeyCommandMutationBuilder(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -188028,7 +193207,8 @@ public DeleteApiKeyCommandMutationBuilder(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -188244,7 +193424,8 @@ public ListApiKeyCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _apiKindParser; @@ -188574,7 +193755,8 @@ public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -188853,7 +194035,8 @@ public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultData } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -189083,7 +194266,8 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -189364,7 +194548,8 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -189589,7 +194774,8 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -189946,7 +195132,8 @@ public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -190329,7 +195516,8 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -190712,7 +195900,8 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -191334,7 +196523,8 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishClientVersionBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -191464,7 +196654,8 @@ public PublishClientVersionBuilder(global::StrawberryShake.IOperationResultDataF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnClientVersionPublishUpdatedBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; @@ -193328,7 +198519,8 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -193843,7 +199035,8 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -194003,7 +199196,8 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -194144,7 +199338,8 @@ public UploadClientBuilder(global::StrawberryShake.IOperationResultDataFactory { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -194269,7 +199464,8 @@ public ValidateClientVersionBuilder(global::StrawberryShake.IOperationResultData } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -194614,7 +199810,8 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -194862,7 +200059,8 @@ public CreateEnvironmentCommandMutationBuilder(global::StrawberryShake.IOperatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -195080,7 +200278,8 @@ public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -195357,7 +200556,8 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -195413,7 +200613,8 @@ public FetchConfigurationBuilder(global::StrawberryShake.IOperationResultDataFac } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -195554,7 +200755,8 @@ public UploadFusionSubgraphBuilder(global::StrawberryShake.IOperationResultDataF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -195678,7 +200880,8 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteMcpFeatureCollectionByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -195802,7 +201005,8 @@ public DeleteMcpFeatureCollectionByIdCommandMutationBuilder(global::StrawberrySh } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -196197,7 +201401,8 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; @@ -196327,7 +201532,8 @@ public PublishMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -198191,7 +203397,8 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -198332,7 +203539,8 @@ public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ValidateMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; @@ -198457,7 +203665,8 @@ public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShak } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -198838,7 +204047,8 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -199050,7 +204260,8 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -199321,7 +204532,8 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -199533,7 +204745,8 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -199657,7 +204870,8 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -199781,7 +204995,8 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -200176,7 +205391,8 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; @@ -200306,7 +205522,8 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PublishOpenApiCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; @@ -202170,7 +207387,8 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -202311,7 +207529,8 @@ public UploadOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -202436,7 +207655,8 @@ public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -202817,7 +208037,8 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -202979,7 +208200,8 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -203191,7 +208413,8 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -203332,7 +208555,8 @@ public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -203462,7 +208686,8 @@ public PublishSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -205356,7 +210581,8 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -205492,7 +210718,8 @@ public UploadSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -205622,7 +210849,8 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnSchemaVersionValidationUpdatedBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; @@ -207195,7 +212423,8 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -207644,7 +212873,8 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -208005,7 +213235,8 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -208146,7 +213377,8 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -208341,7 +213573,8 @@ public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -208536,7 +213769,8 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::Strawberr } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -208809,7 +214043,8 @@ public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -209090,7 +214325,8 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -209563,7 +214799,8 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -209985,7 +215222,8 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class BeginFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -210120,7 +215358,8 @@ public BeginFusionConfigurationPublishBuilder(global::StrawberryShake.IOperation } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class OnFusionConfigurationPublishingTaskChangedBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; @@ -212066,7 +217305,8 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -212174,7 +217414,8 @@ public CancelFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -212284,7 +217525,8 @@ public CommitFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -212392,7 +217634,8 @@ public StartFusionConfigurationPublishBuilder(global::StrawberryShake.IOperation } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -212502,7 +217745,8 @@ public ValidateFusionConfigurationPublishBuilder(global::StrawberryShake.IOperat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -212697,7 +217941,8 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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; @@ -212968,7 +218213,8 @@ public SelectMockSchemaPromptQueryBuilder(global::StrawberryShake.IOperationResu } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class SelectOpenApiCollectionPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; @@ -213163,7 +218409,8 @@ public SelectOpenApiCollectionPromptQueryBuilder(global::StrawberryShake.IOperat } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CreateApiKeyPayloadData { public CreateApiKeyPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? result = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -213178,7 +218425,8 @@ public partial record CreateApiKeyPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiKeyWithSecretData { public ApiKeyWithSecretData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? key = default !, global::System.String? secret = default !) @@ -213193,98 +218441,114 @@ public partial record ApiKeyWithSecretData public global::System.String? Secret { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateMockSchemaErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IBeginFusionConfigurationPublishErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateClientErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateApiKeyErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUploadFusionSubgraphErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateApiKeyForApiErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateApiKeyErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateClientErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IBeginFusionConfigurationPublishErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateMcpFeatureCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUploadSchemaErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateMockSchemaErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDeleteApiByIdErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateOpenApiCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateOpenApiCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDeleteApiByIdErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateMcpFeatureCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPublishSchemaErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IUpdateApiSettingsErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IValidateSchemaErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUpdateStagesErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUpdateStagesErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUploadFusionSubgraphErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPublishSchemaErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUploadSchemaErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateApiKeyForApiErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IValidateSchemaErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ApiNotFoundErrorData : ICreateMockSchemaErrorData, ICreateClientErrorData, IUploadFusionSubgraphErrorData, ICreateApiKeyErrorData, IBeginFusionConfigurationPublishErrorData, IUploadSchemaErrorData, IDeleteApiByIdErrorData, ICreateOpenApiCollectionErrorData, ICreateMcpFeatureCollectionErrorData, IUpdateApiSettingsErrorData, IValidateSchemaErrorData, IUpdateStagesErrorData, IPublishSchemaErrorData, ICreateApiKeyForApiErrorData, IErrorData + // 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 { public ApiNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? apiId = default !) { @@ -213298,26 +218562,30 @@ public partial record ApiNotFoundErrorData : ICreateMockSchemaErrorData, ICreate public global::System.String? ApiId { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ISetActiveWorkspaceErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IRemoveWorkspaceErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IRenameWorkspaceErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IRemoveWorkspaceErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ISetActiveWorkspaceErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record WorkspaceNotFoundData : ICreateApiKeyErrorData, ISetActiveWorkspaceErrorData, IRenameWorkspaceErrorData, IRemoveWorkspaceErrorData, IErrorData + // 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 !) { @@ -213331,7 +218599,8 @@ public partial record WorkspaceNotFoundData : ICreateApiKeyErrorData, ISetActive public global::System.String? WorkspaceId { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersonalWorkspaceNotSupportedErrorData : ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, IErrorData { public PersonalWorkspaceNotSupportedErrorData(global::System.String __typename, global::System.String? message = default !) @@ -213344,44 +218613,51 @@ public partial record PersonalWorkspaceNotSupportedErrorData : ICreateApiKeyErro public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ICreatePersonalAccessTokenErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUpdateThemeSettingsErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateWorkspaceErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUpdateMockSchemaErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUpdateFeatureFlagsErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUpdatePreferencesErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUpdateMockSchemaErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUpdateFeatureFlagsErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUpdatePreferencesErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateWorkspaceErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUpdateThemeSettingsErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ValidationErrorData : ICreateMockSchemaErrorData, ICreateApiKeyErrorData, ICreatePersonalAccessTokenErrorData, IUpdateThemeSettingsErrorData, IUpdateMockSchemaErrorData, IRenameWorkspaceErrorData, IUpdatePreferencesErrorData, IUpdateFeatureFlagsErrorData, IRemoveWorkspaceErrorData, ICreateApiKeyForApiErrorData, ICreateWorkspaceErrorData, IErrorData + // 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 ValidationErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { @@ -213395,188 +218671,219 @@ public partial record ValidationErrorData : ICreateMockSchemaErrorData, ICreateA public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPublishMcpFeatureCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IApproveDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPollClientVersionValidationRequestErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICancelDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICreateAccountErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICancelFusionConfigurationCompositionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDeleteMockSchemaByIdErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICommitFusionConfigurationPublishErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUploadClientErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateAccountErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IValidateOpenApiCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDeleteApiKeyErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICancelDeploymentErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDeleteClientByIdErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IStartFusionConfigurationCompositionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUploadMcpFeatureCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDeleteMockSchemaByIdErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPollClientVersionPublishRequestErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDeleteOpenApiCollectionByIdErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPollSchemaVersionValidationRequestErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IEnsureTunnelSessionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPollSchemaVersionPublishRequestErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPollClientVersionPublishRequestErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICommitFusionConfigurationPublishErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPollClientVersionValidationRequestErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IApproveDeploymentErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPollSchemaVersionPublishRequestErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IValidateMcpFeatureCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPollSchemaVersionValidationRequestErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IEnsureTunnelSessionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPublishClientErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IRevokePersonalAccessTokenErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPublishMcpFeatureCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IValidateClientErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPublishOpenApiCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDeleteOpenApiCollectionByIdErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPushDocumentChangesErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDeleteMcpFeatureCollectionByIdErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IPushWorkspaceChangesErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUnpublishClientErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IRevokePersonalAccessTokenErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUploadOpenApiCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IStartFusionConfigurationCompositionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IValidateFusionConfigurationCompositionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUnpublishClientErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ICancelFusionConfigurationCompositionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUploadClientErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPushWorkspaceChangesErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUploadMcpFeatureCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDeleteClientByIdErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUploadOpenApiCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPublishOpenApiCollectionErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IValidateClientErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDeleteApiKeyErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IValidateFusionConfigurationCompositionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPublishClientErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IValidateMcpFeatureCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IPushDocumentChangesErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IValidateOpenApiCollectionErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record UnauthorizedOperationData : ICreateMockSchemaErrorData, IPublishMcpFeatureCollectionErrorData, IPollClientVersionValidationRequestErrorData, ICreateAccountErrorData, ICreateClientErrorData, IUploadFusionSubgraphErrorData, IDeleteMockSchemaByIdErrorData, IUploadClientErrorData, IValidateOpenApiCollectionErrorData, ICreateApiKeyErrorData, IBeginFusionConfigurationPublishErrorData, ICancelDeploymentErrorData, IStartFusionConfigurationCompositionErrorData, IUploadMcpFeatureCollectionErrorData, IUploadSchemaErrorData, IPollClientVersionPublishRequestErrorData, IDeleteApiByIdErrorData, IPollSchemaVersionValidationRequestErrorData, IPollSchemaVersionPublishRequestErrorData, ICreatePersonalAccessTokenErrorData, ICommitFusionConfigurationPublishErrorData, IApproveDeploymentErrorData, IValidateMcpFeatureCollectionErrorData, IEnsureTunnelSessionErrorData, IUpdateThemeSettingsErrorData, IUpdateMockSchemaErrorData, IRevokePersonalAccessTokenErrorData, IValidateClientErrorData, IDeleteOpenApiCollectionByIdErrorData, IDeleteMcpFeatureCollectionByIdErrorData, IUnpublishClientErrorData, ICreateOpenApiCollectionErrorData, IUploadOpenApiCollectionErrorData, ISetActiveWorkspaceErrorData, IValidateFusionConfigurationCompositionErrorData, ICancelFusionConfigurationCompositionErrorData, IRenameWorkspaceErrorData, IPushWorkspaceChangesErrorData, IDeleteClientByIdErrorData, IPublishOpenApiCollectionErrorData, ICreateMcpFeatureCollectionErrorData, IUpdateApiSettingsErrorData, IValidateSchemaErrorData, IUpdatePreferencesErrorData, IDeleteApiKeyErrorData, IPublishClientErrorData, IPublishSchemaErrorData, IUpdateFeatureFlagsErrorData, IRemoveWorkspaceErrorData, IPushDocumentChangesErrorData, ICreateApiKeyForApiErrorData, ICreateWorkspaceErrorData, IErrorData + // 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 !) { @@ -213588,7 +218895,8 @@ public partial record UnauthorizedOperationData : ICreateMockSchemaErrorData, IP public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -213603,25 +218911,29 @@ public partial record RoleNotFoundErrorData : ICreateApiKeyErrorData, IErrorData public global::System.String? RoleId { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IAuthorizationEventLogPrincipalData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IAuthorizationEventLogSubjectData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface INodeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -213638,7 +218950,8 @@ public partial record ApiKeyData : IAuthorizationEventLogPrincipalData, IAuthori public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -213651,20 +218964,23 @@ public partial record ValidationErrorPropertyData public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IAuthorizationEventLogResourceData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IAuthorizationEventLogRealmData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IAuthorizationEventLogRealmData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IAuthorizationEventLogResourceData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record WorkspaceData : IAuthorizationEventLogResourceData, IAuthorizationEventLogRealmData, INodeData + // 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 !) { @@ -213686,7 +219002,8 @@ public partial record WorkspaceData : IAuthorizationEventLogResourceData, IAutho public global::System.Boolean? Personal { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -213701,7 +219018,8 @@ public partial record DeleteApiKeyPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiKeyNotFoundErrorData : IDeleteApiKeyErrorData, IErrorData { public ApiKeyNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? apiKeyId = default !) @@ -213716,8 +219034,9 @@ public partial record ApiKeyNotFoundErrorData : IDeleteApiKeyErrorData, IErrorDa 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiKeysConnectionData { public ApiKeysConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -213734,8 +219053,9 @@ public partial record ApiKeysConnectionData 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", "15.1.8.0")] + [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 !) @@ -213752,8 +219072,9 @@ public partial record ApiKeysEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Node { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///Information about pagination in a connection. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PageInfoData { 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 !) @@ -213776,7 +219097,8 @@ public partial record PageInfoData public global::System.String? StartCursor { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PushWorkspaceChangesPayloadData { public PushWorkspaceChangesPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? changes = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -213791,7 +219113,8 @@ public partial record PushWorkspaceChangesPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record WorkspaceChangePayloadData { 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 !) @@ -213808,8 +219131,9 @@ public partial record WorkspaceChangePayloadData public global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Result { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ChangeStructureInvalidData : IPushWorkspaceChangesErrorData, IPushDocumentChangesErrorData, IErrorData + // 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 !) { @@ -213821,13 +219145,15 @@ public partial record ChangeStructureInvalidData : IPushWorkspaceChangesErrorDat public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IWorkspaceChangeErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -213840,7 +219166,8 @@ public partial record ChangeValidationFailedData : IWorkspaceChangeErrorData, IE public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record HasBeenChangedConflictData : IWorkspaceChangeErrorData, IErrorData { public HasBeenChangedConflictData(global::System.String __typename, global::System.String? message = default !) @@ -213853,7 +219180,8 @@ public partial record HasBeenChangedConflictData : IWorkspaceChangeErrorData, IE public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record HasBeenDeletedConflictData : IWorkspaceChangeErrorData, IErrorData { public HasBeenDeletedConflictData(global::System.String __typename, global::System.String? message = default !) @@ -213866,7 +219194,8 @@ public partial record HasBeenDeletedConflictData : IWorkspaceChangeErrorData, IE public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record IdentifierCollisionConflictData : IWorkspaceChangeErrorData, IErrorData { public IdentifierCollisionConflictData(global::System.String __typename, global::System.String? message = default !) @@ -213879,7 +219208,8 @@ public partial record IdentifierCollisionConflictData : IWorkspaceChangeErrorDat public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UnexpectedErrorOnChangeData : IWorkspaceChangeErrorData, IErrorData { public UnexpectedErrorOnChangeData(global::System.String __typename, global::System.String? message = default !) @@ -213892,7 +219222,8 @@ public partial record UnexpectedErrorOnChangeData : IWorkspaceChangeErrorData, I public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record WorkspaceNotFoundForChangeData : IWorkspaceChangeErrorData, IErrorData { public WorkspaceNotFoundForChangeData(global::System.String __typename, global::System.String? message = default !) @@ -213905,13 +219236,15 @@ public partial record WorkspaceNotFoundForChangeData : IWorkspaceChangeErrorData public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IWorkspaceChangeResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiDocumentData : IWorkspaceChangeResultData, INodeData { public ApiDocumentData(global::System.String __typename) @@ -213922,14 +219255,16 @@ public ApiDocumentData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IApiKeyReferenceData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ApiData : IAuthorizationEventLogResourceData, IWorkspaceChangeResultData, IApiKeyReferenceData, INodeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [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 !) { @@ -213961,7 +219296,8 @@ public partial record ApiData : IAuthorizationEventLogResourceData, IWorkspaceCh public global::System.Collections.Generic.IReadOnlyList? Stages { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record WorkspaceDocumentData : IWorkspaceChangeResultData, INodeData { public WorkspaceDocumentData(global::System.String __typename) @@ -213972,7 +219308,8 @@ public WorkspaceDocumentData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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? name = default !, global::System.String? id = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !) @@ -213989,7 +219326,8 @@ public partial record EnvironmentData : IWorkspaceChangeResultData, INodeData public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiSettingsData { public ApiSettingsData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData? schemaRegistry = default !) @@ -214002,7 +219340,8 @@ public partial record ApiSettingsData public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData? SchemaRegistry { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -214017,7 +219356,8 @@ public partial record SchemaRegistrySettingsData public global::System.Boolean? AllowBreakingSchemaChanges { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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? 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 !) @@ -214036,13 +219376,15 @@ public partial record ClientData : INodeData public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Versions { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IStageChangeLogData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientChangeLogData : IStageChangeLogData, INodeData { public ClientChangeLogData(global::System.String __typename) @@ -214053,13 +219395,15 @@ public ClientChangeLogData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IDeploymentData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientDeploymentData : INodeData, IDeploymentData { public ClientDeploymentData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214072,7 +219416,8 @@ public partial record ClientDeploymentData : INodeData, IDeploymentData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionData : INodeData { public ClientVersionData(global::System.String __typename, global::System.String? id = default !, global::System.DateTimeOffset? createdAt = default !, global::System.String? tag = default !, global::System.Collections.Generic.IReadOnlyList? publishedTo = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !) @@ -214093,7 +219438,8 @@ public partial record ClientVersionData : INodeData public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CoordinateClientUsageMetricsData : INodeData { public CoordinateClientUsageMetricsData(global::System.String __typename) @@ -214104,7 +219450,8 @@ public CoordinateClientUsageMetricsData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationChangeLogData : IStageChangeLogData, INodeData { public FusionConfigurationChangeLogData(global::System.String __typename) @@ -214115,7 +219462,8 @@ public FusionConfigurationChangeLogData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationDeploymentData : INodeData, IDeploymentData { public FusionConfigurationDeploymentData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214128,19 +219476,22 @@ public partial record FusionConfigurationDeploymentData : INodeData, IDeployment public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IGraphQLTypeSystemMemberData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IGraphQLInputValueDefinitionData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLDirectiveArgumentDefinitionData : INodeData, IGraphQLTypeSystemMemberData, IGraphQLInputValueDefinitionData { public GraphQLDirectiveArgumentDefinitionData(global::System.String __typename) @@ -214151,7 +219502,8 @@ public GraphQLDirectiveArgumentDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLDirectiveDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLDirectiveDefinitionData(global::System.String __typename) @@ -214162,7 +219514,8 @@ public GraphQLDirectiveDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLEnumTypeDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLEnumTypeDefinitionData(global::System.String __typename) @@ -214173,7 +219526,8 @@ public GraphQLEnumTypeDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLEnumValueDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLEnumValueDefinitionData(global::System.String __typename) @@ -214184,7 +219538,8 @@ public GraphQLEnumValueDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLInputObjectFieldDefinitionData : INodeData, IGraphQLTypeSystemMemberData, IGraphQLInputValueDefinitionData { public GraphQLInputObjectFieldDefinitionData(global::System.String __typename) @@ -214195,7 +219550,8 @@ public GraphQLInputObjectFieldDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLInputObjectTypeDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLInputObjectTypeDefinitionData(global::System.String __typename) @@ -214206,13 +219562,15 @@ public GraphQLInputObjectTypeDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IGraphQLOutputFieldArgumentDefinitionData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLInterfaceFieldArgumentDefinitionData : INodeData, IGraphQLTypeSystemMemberData, IGraphQLInputValueDefinitionData, IGraphQLOutputFieldArgumentDefinitionData { public GraphQLInterfaceFieldArgumentDefinitionData(global::System.String __typename) @@ -214223,13 +219581,15 @@ public GraphQLInterfaceFieldArgumentDefinitionData(global::System.String __typen public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IGraphQLOutputFieldDefinitionData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLInterfaceFieldDefinitionData : INodeData, IGraphQLTypeSystemMemberData, IGraphQLOutputFieldDefinitionData { public GraphQLInterfaceFieldDefinitionData(global::System.String __typename) @@ -214240,7 +219600,8 @@ public GraphQLInterfaceFieldDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLInterfaceTypeDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLInterfaceTypeDefinitionData(global::System.String __typename) @@ -214251,7 +219612,8 @@ public GraphQLInterfaceTypeDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLObjectFieldArgumentDefinitionData : INodeData, IGraphQLTypeSystemMemberData, IGraphQLInputValueDefinitionData, IGraphQLOutputFieldArgumentDefinitionData { public GraphQLObjectFieldArgumentDefinitionData(global::System.String __typename) @@ -214262,7 +219624,8 @@ public GraphQLObjectFieldArgumentDefinitionData(global::System.String __typename public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLObjectFieldDefinitionData : INodeData, IGraphQLTypeSystemMemberData, IGraphQLOutputFieldDefinitionData { public GraphQLObjectFieldDefinitionData(global::System.String __typename) @@ -214273,7 +219636,8 @@ public GraphQLObjectFieldDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLScalarTypeDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLScalarTypeDefinitionData(global::System.String __typename) @@ -214284,7 +219648,8 @@ public GraphQLScalarTypeDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLUnionTypeDefinitionData : INodeData, IGraphQLTypeSystemMemberData { public GraphQLUnionTypeDefinitionData(global::System.String __typename) @@ -214295,7 +219660,8 @@ public GraphQLUnionTypeDefinitionData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GroupData : IAuthorizationEventLogPrincipalData, INodeData { public GroupData(global::System.String __typename) @@ -214306,7 +219672,8 @@ public GroupData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionData : INodeData { public McpFeatureCollectionData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !) @@ -214321,7 +219688,8 @@ public partial record McpFeatureCollectionData : INodeData public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionChangeLogData : IStageChangeLogData, INodeData { public McpFeatureCollectionChangeLogData(global::System.String __typename) @@ -214332,7 +219700,8 @@ public McpFeatureCollectionChangeLogData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionDeploymentData : INodeData, IDeploymentData { public McpFeatureCollectionDeploymentData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214345,7 +219714,8 @@ public partial record McpFeatureCollectionDeploymentData : INodeData, IDeploymen public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionVersionData : INodeData { public McpFeatureCollectionVersionData(global::System.String __typename, global::System.String? id = default !) @@ -214358,7 +219728,8 @@ public partial record McpFeatureCollectionVersionData : INodeData public global::System.String? Id { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionData : INodeData { public OpenApiCollectionData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !) @@ -214373,7 +219744,8 @@ public partial record OpenApiCollectionData : INodeData public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionChangeLogData : IStageChangeLogData, INodeData { public OpenApiCollectionChangeLogData(global::System.String __typename) @@ -214384,7 +219756,8 @@ public OpenApiCollectionChangeLogData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionDeploymentData : INodeData, IDeploymentData { public OpenApiCollectionDeploymentData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214397,7 +219770,8 @@ public partial record OpenApiCollectionDeploymentData : INodeData, IDeploymentDa public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionVersionData : INodeData { public OpenApiCollectionVersionData(global::System.String __typename, global::System.String? id = default !) @@ -214410,8 +219784,9 @@ public partial record OpenApiCollectionVersionData : INodeData public global::System.String? Id { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record OrganizationData : IAuthorizationEventLogResourceData, IAuthorizationEventLogRealmData, INodeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OrganizationData : IAuthorizationEventLogRealmData, IAuthorizationEventLogResourceData, INodeData { public OrganizationData(global::System.String __typename) { @@ -214421,7 +219796,8 @@ public OrganizationData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OrganizationMemberData : IAuthorizationEventLogPrincipalData, INodeData { public OrganizationMemberData(global::System.String __typename) @@ -214432,7 +219808,8 @@ public OrganizationMemberData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaChangeLogData : IStageChangeLogData, INodeData { public SchemaChangeLogData(global::System.String __typename) @@ -214443,7 +219820,8 @@ public SchemaChangeLogData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaDeploymentData : INodeData, IDeploymentData { public SchemaDeploymentData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214456,7 +219834,8 @@ public partial record SchemaDeploymentData : INodeData, IDeploymentData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record StageData : INodeData { public StageData(global::System.String __typename, global::System.String? name = default !, global::System.String? id = default !, global::System.String? displayName = default !, global::System.Collections.Generic.IReadOnlyList? conditions = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData? publishedSchema = default !, global::System.Collections.Generic.IReadOnlyList? publishedClients = default !) @@ -214479,7 +219858,8 @@ public partial record StageData : INodeData public global::System.Collections.Generic.IReadOnlyList? PublishedClients { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UserData : IAuthorizationEventLogRealmData, IAuthorizationEventLogSubjectData, INodeData { public UserData(global::System.String __typename) @@ -214490,7 +219870,8 @@ public UserData(global::System.String __typename) public global::System.String __typename { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -214505,7 +219886,8 @@ public partial record DeleteApiByIdPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -214518,8 +219900,9 @@ public partial record ApiDeletionFailedErrorData : IDeleteApiByIdErrorData, IErr 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", "15.1.8.0")] + [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 !) @@ -214536,8 +219919,9 @@ public partial record ApisConnectionData 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", "15.1.8.0")] + [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 !) @@ -214554,7 +219938,8 @@ public partial record ApisEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UpdateApiSettingsPayloadData { public UpdateApiSettingsPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214569,7 +219954,8 @@ public partial record UpdateApiSettingsPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CreateClientPayloadData { public CreateClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214584,8 +219970,9 @@ public partial record CreateClientPayloadData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionConnectionData { public ClientVersionConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -214602,8 +219989,9 @@ public partial record ClientVersionConnectionData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionEdgeData { public ClientVersionEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? node = default !) @@ -214620,7 +220008,8 @@ public partial record ClientVersionEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishedClientVersionData { public PublishedClientVersionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.StageData? stage = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? version = default !) @@ -214635,7 +220024,8 @@ public partial record PublishedClientVersionData public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? Version { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record DeleteClientByIdPayloadData { public DeleteClientByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214650,8 +220040,9 @@ public partial record DeleteClientByIdPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ClientNotFoundErrorData : IUploadClientErrorData, IValidateClientErrorData, IUnpublishClientErrorData, IDeleteClientByIdErrorData, IPublishClientErrorData, IErrorData + // 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 ClientNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? clientId = default !) { @@ -214665,8 +220056,9 @@ public partial record ClientNotFoundErrorData : IUploadClientErrorData, IValidat public global::System.String? ClientId { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientsConnectionData { public ClientsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -214683,8 +220075,9 @@ public partial record ClientsConnectionData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientsEdgeData { public ClientsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? node = default !) @@ -214701,7 +220094,8 @@ public partial record ClientsEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishClientPayloadData { public PublishClientPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214716,8 +220110,9 @@ public partial record PublishClientPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record StageNotFoundErrorData : IPublishMcpFeatureCollectionErrorData, IValidateOpenApiCollectionErrorData, IBeginFusionConfigurationPublishErrorData, IValidateMcpFeatureCollectionErrorData, IValidateClientErrorData, IUnpublishClientErrorData, IPublishOpenApiCollectionErrorData, IValidateSchemaErrorData, IUpdateStagesErrorData, IPublishClientErrorData, IPublishSchemaErrorData, IErrorData + // 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 StageNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? name = default !) { @@ -214731,8 +220126,9 @@ public partial record StageNotFoundErrorData : IPublishMcpFeatureCollectionError public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ClientVersionNotFoundErrorData : IUnpublishClientErrorData, IPublishClientErrorData, IErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ClientVersionNotFoundErrorData : IPublishClientErrorData, IUnpublishClientErrorData, IErrorData { public ClientVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? clientId = default !) { @@ -214748,13 +220144,15 @@ public partial record ClientVersionNotFoundErrorData : IUnpublishClientErrorData public global::System.String? ClientId { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IClientVersionPublishResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionPublishFailedData : IClientVersionPublishResultData { public ClientVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -214769,7 +220167,8 @@ public partial record ClientVersionPublishFailedData : IClientVersionPublishResu public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionPublishSuccessData : IClientVersionPublishResultData { public ClientVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -214782,55 +220181,64 @@ public partial record ClientVersionPublishSuccessData : IClientVersionPublishRes public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ISchemaVersionValidationResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ISchemaVersionPublishResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IClientVersionValidationResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IFusionConfigurationPublishingResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionVersionPublishResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionVersionValidationResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionVersionPublishResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionVersionValidationResultData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OperationInProgressData : ISchemaVersionValidationResultData, ISchemaVersionPublishResultData, IClientVersionValidationResultData, IClientVersionPublishResultData, IFusionConfigurationPublishingResultData, IOpenApiCollectionVersionPublishResultData, IOpenApiCollectionVersionValidationResultData, IMcpFeatureCollectionVersionPublishResultData, IMcpFeatureCollectionVersionValidationResultData { public OperationInProgressData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -214843,7 +220251,8 @@ public partial record OperationInProgressData : ISchemaVersionValidationResultDa public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ProcessingTaskApprovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -214856,7 +220265,8 @@ public partial record ProcessingTaskApprovedData : ISchemaVersionPublishResultDa public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ProcessingTaskIsQueuedData(global::System.String __typename, global::System.String? queued = default !, global::System.Int32? queuePosition = default !, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -214874,7 +220284,8 @@ public partial record ProcessingTaskIsQueuedData : IFusionConfigurationPublishin public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ProcessingTaskIsReadyData(global::System.String __typename, global::System.String? ready = default !, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -214890,7 +220301,8 @@ public partial record ProcessingTaskIsReadyData : IFusionConfigurationPublishing public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 WaitForApprovalData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? deployment = default !) @@ -214905,44 +220317,51 @@ public partial record WaitForApprovalData : ISchemaVersionPublishResultData, ICl public global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deployment { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ISchemaVersionPublishErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IClientVersionPublishErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IFusionConfigurationPublishingErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionVersionPublishErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionVersionPublishErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IProcessingErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ConcurrentOperationErrorData : IUploadFusionSubgraphErrorData, IUploadClientErrorData, IUploadMcpFeatureCollectionErrorData, IUploadSchemaErrorData, IUnpublishClientErrorData, IUploadOpenApiCollectionErrorData, IErrorData, ISchemaVersionPublishErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionPublishErrorData, IProcessingErrorData + // 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 ConcurrentOperationErrorData(global::System.String __typename, global::System.String? message = default !) { @@ -214954,44 +220373,51 @@ public partial record ConcurrentOperationErrorData : IUploadFusionSubgraphErrorD public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ISchemaDeploymentErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IClientDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IClientDeploymentErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IFusionConfigurationDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IFusionConfigurationDeploymentErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ISchemaDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IClientVersionValidationErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ISchemaVersionValidationErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IFusionConfigurationValidationErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record PersistedQueryValidationErrorData : ISchemaDeploymentErrorData, IClientDeploymentErrorData, IFusionConfigurationDeploymentErrorData, IClientVersionPublishErrorData, IClientVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + // 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 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 !) { @@ -215007,19 +220433,22 @@ public partial record PersistedQueryValidationErrorData : ISchemaDeploymentError public global::System.Collections.Generic.IReadOnlyList? Queries { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionVersionValidationErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionVersionValidationErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ProcessingTimeoutErrorData(global::System.String __typename, global::System.String? message = default !) @@ -215032,7 +220461,8 @@ public partial record ProcessingTimeoutErrorData : ISchemaVersionValidationError public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ReadyTimeoutErrorData(global::System.String __typename, global::System.String? message = default !) @@ -215045,7 +220475,8 @@ public partial record ReadyTimeoutErrorData : IClientVersionPublishErrorData, IC public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 UnexpectedProcessingErrorData(global::System.String __typename, global::System.String? message = default !) @@ -215058,7 +220489,8 @@ public partial record UnexpectedProcessingErrorData : ISchemaVersionValidationEr public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersistedQueryValidationFailedData { 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 !) @@ -215077,8 +220509,9 @@ public partial record PersistedQueryValidationFailedData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record SchemaChangeViolationErrorData : ISchemaDeploymentErrorData, IFusionConfigurationDeploymentErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record SchemaChangeViolationErrorData : IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData { public SchemaChangeViolationErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) { @@ -215092,8 +220525,9 @@ public partial record SchemaChangeViolationErrorData : ISchemaDeploymentErrorDat public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record InvalidGraphQLSchemaErrorData : ISchemaDeploymentErrorData, IFusionConfigurationDeploymentErrorData, ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + // 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 InvalidGraphQLSchemaErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { @@ -215107,14 +220541,16 @@ public partial record InvalidGraphQLSchemaErrorData : ISchemaDeploymentErrorData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record OpenApiCollectionValidationErrorData : ISchemaDeploymentErrorData, IOpenApiCollectionDeploymentErrorData, IFusionConfigurationDeploymentErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OpenApiCollectionValidationErrorData : IFusionConfigurationDeploymentErrorData, IOpenApiCollectionDeploymentErrorData, ISchemaDeploymentErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData { public OpenApiCollectionValidationErrorData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? collections = default !) { @@ -215126,14 +220562,16 @@ public partial record OpenApiCollectionValidationErrorData : ISchemaDeploymentEr public global::System.Collections.Generic.IReadOnlyList? Collections { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionDeploymentErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record McpFeatureCollectionValidationErrorData : ISchemaDeploymentErrorData, IMcpFeatureCollectionDeploymentErrorData, IFusionConfigurationDeploymentErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + // 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 !) { @@ -215145,7 +220583,8 @@ public partial record McpFeatureCollectionValidationErrorData : ISchemaDeploymen public global::System.Collections.Generic.IReadOnlyList? Collections { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OperationsAreNotAllowedErrorData : ISchemaDeploymentErrorData, ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IProcessingErrorData { public OperationsAreNotAllowedErrorData(global::System.String __typename, global::System.String? message = default !) @@ -215158,7 +220597,8 @@ public partial record OperationsAreNotAllowedErrorData : ISchemaDeploymentErrorD public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaVersionSyntaxErrorData : ISchemaDeploymentErrorData, ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IProcessingErrorData { public SchemaVersionSyntaxErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Int32? column = default !, global::System.Int32? position = default !, global::System.Int32? line = default !) @@ -215177,7 +220617,8 @@ public partial record SchemaVersionSyntaxErrorData : ISchemaDeploymentErrorData, public global::System.Int32? Line { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersistedQueryErrorData { 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 !) @@ -215196,19 +220637,22 @@ public partial record PersistedQueryErrorData public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ISchemaChangeLogEntryData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface ISchemaChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record DirectiveModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public DirectiveModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215225,7 +220669,8 @@ public partial record DirectiveModifiedChangeData : ISchemaChangeLogEntryData, I public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record EnumModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public EnumModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215242,7 +220687,8 @@ public partial record EnumModifiedChangeData : ISchemaChangeLogEntryData, ISchem public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record InputObjectModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public InputObjectModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215259,7 +220705,8 @@ public partial record InputObjectModifiedChangeData : ISchemaChangeLogEntryData, public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record InterfaceModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public InterfaceModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215276,7 +220723,8 @@ public partial record InterfaceModifiedChangeData : ISchemaChangeLogEntryData, I public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ObjectModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public ObjectModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215293,7 +220741,8 @@ public partial record ObjectModifiedChangeData : ISchemaChangeLogEntryData, ISch public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ScalarModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public ScalarModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215310,7 +220759,8 @@ public partial record ScalarModifiedChangeData : ISchemaChangeLogEntryData, ISch public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record TypeSystemMemberAddedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public TypeSystemMemberAddedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !) @@ -215325,7 +220775,8 @@ public partial record TypeSystemMemberAddedChangeData : ISchemaChangeLogEntryDat public global::System.String? Coordinate { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record TypeSystemMemberModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public TypeSystemMemberModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !) @@ -215338,7 +220789,8 @@ public partial record TypeSystemMemberModifiedChangeData : ISchemaChangeLogEntry public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? Severity { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record TypeSystemMemberRemovedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public TypeSystemMemberRemovedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !) @@ -215353,7 +220805,8 @@ public partial record TypeSystemMemberRemovedChangeData : ISchemaChangeLogEntryD public global::System.String? Coordinate { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UnionModifiedChangeData : ISchemaChangeLogEntryData, ISchemaChangeData { public UnionModifiedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215370,7 +220823,8 @@ public partial record UnionModifiedChangeData : ISchemaChangeLogEntryData, ISche public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record GraphQLSchemaErrorData { public GraphQLSchemaErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? code = default !) @@ -215385,7 +220839,8 @@ public partial record GraphQLSchemaErrorData public global::System.String? Code { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -215400,7 +220855,8 @@ public partial record OpenApiCollectionValidationCollectionData public global::System.Collections.Generic.IReadOnlyList? Entities { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionValidationCollectionData { public McpFeatureCollectionValidationCollectionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? entities = default !) @@ -215415,7 +220871,8 @@ public partial record McpFeatureCollectionValidationCollectionData public global::System.Collections.Generic.IReadOnlyList? Entities { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersistedQueryErrorLocationData { public PersistedQueryErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) @@ -215430,32 +220887,37 @@ public partial record PersistedQueryErrorLocationData public global::System.Int32? Line { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface ISchemaMemberChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IDirectiveChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IDirectiveChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IFieldChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOutputFieldChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IFieldChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ISchemaMemberChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ArgumentAddedData : ISchemaMemberChangeData, IDirectiveChangeData, IOutputFieldChangeData, IFieldChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ArgumentAddedData : IDirectiveChangeData, IFieldChangeData, IOutputFieldChangeData, ISchemaMemberChangeData, ISchemaChangeData { public ArgumentAddedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? name = default !, global::System.String? typeName = default !) { @@ -215473,8 +220935,9 @@ public partial record ArgumentAddedData : ISchemaMemberChangeData, IDirectiveCha public global::System.String? TypeName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ArgumentChangedData : ISchemaMemberChangeData, IDirectiveChangeData, IOutputFieldChangeData, IFieldChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ArgumentChangedData : IDirectiveChangeData, IFieldChangeData, IOutputFieldChangeData, ISchemaMemberChangeData, ISchemaChangeData { public ArgumentChangedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? name = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) { @@ -215492,8 +220955,9 @@ public partial record ArgumentChangedData : ISchemaMemberChangeData, IDirectiveC public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record ArgumentRemovedData : ISchemaMemberChangeData, IDirectiveChangeData, IOutputFieldChangeData, IFieldChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ArgumentRemovedData : IDirectiveChangeData, IFieldChangeData, IOutputFieldChangeData, ISchemaMemberChangeData, ISchemaChangeData { public ArgumentRemovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? name = default !, global::System.String? typeName = default !) { @@ -215511,62 +220975,72 @@ public partial record ArgumentRemovedData : ISchemaMemberChangeData, IDirectiveC public global::System.String? TypeName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IEnumChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IArgumentChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IObjectChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IEnumChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IEnumValueChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IUnionChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IInputFieldChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IInterfaceChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IInputObjectChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IArgumentChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IInterfaceChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IScalarChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IObjectChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IInputFieldChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IScalarChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial interface IInputObjectChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUnionChangeData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record DescriptionChangedData : IEnumChangeData, IObjectChangeData, IEnumValueChangeData, IUnionChangeData, IInterfaceChangeData, ISchemaMemberChangeData, IArgumentChangeData, IDirectiveChangeData, IScalarChangeData, IInputFieldChangeData, IInputObjectChangeData, IOutputFieldChangeData, IFieldChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DescriptionChangedData : IArgumentChangeData, IDirectiveChangeData, IEnumChangeData, IEnumValueChangeData, IFieldChangeData, IInputFieldChangeData, IInputObjectChangeData, IInterfaceChangeData, IObjectChangeData, IOutputFieldChangeData, IScalarChangeData, ISchemaMemberChangeData, IUnionChangeData, ISchemaChangeData { public DescriptionChangedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? old = default !, global::System.String? @new = default !) { @@ -215582,8 +221056,9 @@ public partial record DescriptionChangedData : IEnumChangeData, IObjectChangeDat public global::System.String? New { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record DirectiveLocationAddedData : ISchemaMemberChangeData, IDirectiveChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DirectiveLocationAddedData : IDirectiveChangeData, ISchemaMemberChangeData, ISchemaChangeData { public DirectiveLocationAddedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation? location = default !) { @@ -215597,8 +221072,9 @@ public partial record DirectiveLocationAddedData : ISchemaMemberChangeData, IDir public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation? Location { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record DirectiveLocationRemovedData : ISchemaMemberChangeData, IDirectiveChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DirectiveLocationRemovedData : IDirectiveChangeData, ISchemaMemberChangeData, ISchemaChangeData { public DirectiveLocationRemovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation? location = default !) { @@ -215612,7 +221088,8 @@ public partial record DirectiveLocationRemovedData : ISchemaMemberChangeData, ID public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation? Location { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record EnumValueAddedData : IEnumChangeData, ISchemaMemberChangeData, ISchemaChangeData { public EnumValueAddedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !) @@ -215627,7 +221104,8 @@ public partial record EnumValueAddedData : IEnumChangeData, ISchemaMemberChangeD public global::System.String? Coordinate { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record EnumValueChangedData : IEnumChangeData, ISchemaMemberChangeData, ISchemaChangeData { public EnumValueChangedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -215644,7 +221122,8 @@ public partial record EnumValueChangedData : IEnumChangeData, ISchemaMemberChang public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record EnumValueRemovedData : IEnumChangeData, ISchemaMemberChangeData, ISchemaChangeData { public EnumValueRemovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !) @@ -215659,8 +221138,9 @@ public partial record EnumValueRemovedData : IEnumChangeData, ISchemaMemberChang public global::System.String? Coordinate { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record FieldAddedChangeData : IObjectChangeData, IInterfaceChangeData, ISchemaMemberChangeData, IInputObjectChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record FieldAddedChangeData : IInputObjectChangeData, IInterfaceChangeData, IObjectChangeData, ISchemaMemberChangeData, ISchemaChangeData { public FieldAddedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? typeName = default !, global::System.String? fieldName = default !) { @@ -215678,8 +221158,9 @@ public partial record FieldAddedChangeData : IObjectChangeData, IInterfaceChange public global::System.String? FieldName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record FieldRemovedChangeData : IObjectChangeData, IInterfaceChangeData, ISchemaMemberChangeData, IInputObjectChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record FieldRemovedChangeData : IInputObjectChangeData, IInterfaceChangeData, IObjectChangeData, ISchemaMemberChangeData, ISchemaChangeData { public FieldRemovedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? typeName = default !, global::System.String? fieldName = default !) { @@ -215697,8 +221178,9 @@ public partial record FieldRemovedChangeData : IObjectChangeData, IInterfaceChan public global::System.String? FieldName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record InputFieldChangedData : ISchemaMemberChangeData, IInputObjectChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record InputFieldChangedData : IInputObjectChangeData, ISchemaMemberChangeData, ISchemaChangeData { public InputFieldChangedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? fieldName = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) { @@ -215716,8 +221198,9 @@ public partial record InputFieldChangedData : ISchemaMemberChangeData, IInputObj public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record InterfaceImplementationAddedData : IObjectChangeData, IInterfaceChangeData, ISchemaMemberChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record InterfaceImplementationAddedData : IInterfaceChangeData, IObjectChangeData, ISchemaMemberChangeData, ISchemaChangeData { public InterfaceImplementationAddedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? interfaceName = default !) { @@ -215731,8 +221214,9 @@ public partial record InterfaceImplementationAddedData : IObjectChangeData, IInt public global::System.String? InterfaceName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record InterfaceImplementationRemovedData : IObjectChangeData, IInterfaceChangeData, ISchemaMemberChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record InterfaceImplementationRemovedData : IInterfaceChangeData, IObjectChangeData, ISchemaMemberChangeData, ISchemaChangeData { public InterfaceImplementationRemovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? interfaceName = default !) { @@ -215746,8 +221230,9 @@ public partial record InterfaceImplementationRemovedData : IObjectChangeData, II public global::System.String? InterfaceName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record OutputFieldChangedData : IObjectChangeData, IInterfaceChangeData, ISchemaMemberChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OutputFieldChangedData : IInterfaceChangeData, IObjectChangeData, ISchemaMemberChangeData, ISchemaChangeData { public OutputFieldChangedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? coordinate = default !, global::System.String? fieldName = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) { @@ -215765,7 +221250,8 @@ public partial record OutputFieldChangedData : IObjectChangeData, IInterfaceChan public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PossibleTypeAddedData : IInterfaceChangeData, ISchemaMemberChangeData, ISchemaChangeData { public PossibleTypeAddedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? typeName = default !) @@ -215780,7 +221266,8 @@ public partial record PossibleTypeAddedData : IInterfaceChangeData, ISchemaMembe public global::System.String? TypeName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PossibleTypeRemovedData : IInterfaceChangeData, ISchemaMemberChangeData, ISchemaChangeData { public PossibleTypeRemovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? typeName = default !) @@ -215795,8 +221282,9 @@ public partial record PossibleTypeRemovedData : IInterfaceChangeData, ISchemaMem public global::System.String? TypeName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record UnionMemberAddedData : IUnionChangeData, ISchemaMemberChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record UnionMemberAddedData : ISchemaMemberChangeData, IUnionChangeData, ISchemaChangeData { public UnionMemberAddedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? typeName = default !) { @@ -215810,8 +221298,9 @@ public partial record UnionMemberAddedData : IUnionChangeData, ISchemaMemberChan public global::System.String? TypeName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record UnionMemberRemovedData : IUnionChangeData, ISchemaMemberChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record UnionMemberRemovedData : ISchemaMemberChangeData, IUnionChangeData, ISchemaChangeData { public UnionMemberRemovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? typeName = default !) { @@ -215825,13 +221314,15 @@ public partial record UnionMemberRemovedData : IUnionChangeData, ISchemaMemberCh public global::System.String? TypeName { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionValidationEntityData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionValidationEndpointData : IOpenApiCollectionValidationEntityData { public OpenApiCollectionValidationEndpointData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? httpMethod = default !, global::System.String? route = default !) @@ -215848,7 +221339,8 @@ public partial record OpenApiCollectionValidationEndpointData : IOpenApiCollecti public global::System.String? Route { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionValidationModelData : IOpenApiCollectionValidationEntityData { public OpenApiCollectionValidationModelData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) @@ -215863,13 +221355,15 @@ public partial record OpenApiCollectionValidationModelData : IOpenApiCollectionV public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionValidationEntityData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -215884,7 +221378,8 @@ public partial record McpFeatureCollectionValidationPromptData : IMcpFeatureColl public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionValidationToolData : IMcpFeatureCollectionValidationEntityData { public McpFeatureCollectionValidationToolData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) @@ -215899,8 +221394,9 @@ public partial record McpFeatureCollectionValidationToolData : IMcpFeatureCollec public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record DeprecatedChangeData : IEnumValueChangeData, IArgumentChangeData, IInputFieldChangeData, IOutputFieldChangeData, IFieldChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DeprecatedChangeData : IArgumentChangeData, IEnumValueChangeData, IFieldChangeData, IInputFieldChangeData, IOutputFieldChangeData, ISchemaChangeData { public DeprecatedChangeData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? deprecationReason = default !) { @@ -215914,8 +221410,9 @@ public partial record DeprecatedChangeData : IEnumValueChangeData, IArgumentChan public global::System.String? DeprecationReason { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record TypeChangedData : IArgumentChangeData, IInputFieldChangeData, IOutputFieldChangeData, IFieldChangeData, ISchemaChangeData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record TypeChangedData : IArgumentChangeData, IFieldChangeData, IInputFieldChangeData, IOutputFieldChangeData, ISchemaChangeData { public TypeChangedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity? severity = default !, global::System.String? oldType = default !, global::System.String? newType = default !) { @@ -215931,13 +221428,15 @@ public partial record TypeChangedData : IArgumentChangeData, IInputFieldChangeDa public global::System.String? NewType { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IOpenApiCollectionValidationEntityErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionValidationDocumentErrorData : IOpenApiCollectionValidationEntityErrorData { 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 !) @@ -215956,7 +221455,8 @@ public partial record OpenApiCollectionValidationDocumentErrorData : IOpenApiCol public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionValidationEntityValidationErrorData : IOpenApiCollectionValidationEntityErrorData { public OpenApiCollectionValidationEntityValidationErrorData(global::System.String __typename, global::System.String? message = default !) @@ -215969,13 +221469,15 @@ public partial record OpenApiCollectionValidationEntityValidationErrorData : IOp public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IMcpFeatureCollectionValidationEntityErrorData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionValidationDocumentErrorData : IMcpFeatureCollectionValidationEntityErrorData { 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 !) @@ -215994,7 +221496,8 @@ public partial record McpFeatureCollectionValidationDocumentErrorData : IMcpFeat public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionValidationEntityValidationErrorData : IMcpFeatureCollectionValidationEntityErrorData { public McpFeatureCollectionValidationEntityValidationErrorData(global::System.String __typename, global::System.String? message = default !) @@ -216007,7 +221510,8 @@ public partial record McpFeatureCollectionValidationEntityValidationErrorData : public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionValidationDocumentErrorLocationData { public OpenApiCollectionValidationDocumentErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) @@ -216022,7 +221526,8 @@ public partial record OpenApiCollectionValidationDocumentErrorLocationData public global::System.Int32? Line { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionValidationDocumentErrorLocationData { public McpFeatureCollectionValidationDocumentErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) @@ -216037,7 +221542,8 @@ public partial record McpFeatureCollectionValidationDocumentErrorLocationData public global::System.Int32? Line { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UnpublishClientPayloadData { public UnpublishClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? clientVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216052,7 +221558,8 @@ public partial record UnpublishClientPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UploadClientPayloadData { public UploadClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? clientVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216067,7 +221574,8 @@ public partial record UploadClientPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record InvalidPersistedQueryErrorData : IUploadClientErrorData, IErrorData { public InvalidPersistedQueryErrorData(global::System.String __typename, global::System.String? message = default !) @@ -216080,8 +221588,9 @@ public partial record InvalidPersistedQueryErrorData : IUploadClientErrorData, I public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record DuplicatedTagErrorData : IUploadFusionSubgraphErrorData, IUploadClientErrorData, IUploadMcpFeatureCollectionErrorData, IUploadSchemaErrorData, IUploadOpenApiCollectionErrorData, IErrorData + // 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 DuplicatedTagErrorData(global::System.String __typename, global::System.String? message = default !) { @@ -216093,7 +221602,8 @@ public partial record DuplicatedTagErrorData : IUploadFusionSubgraphErrorData, I public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateClientPayloadData { public ValidateClientPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216108,7 +221618,8 @@ public partial record ValidateClientPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionValidationFailedData : IClientVersionValidationResultData { public ClientVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216123,7 +221634,8 @@ public partial record ClientVersionValidationFailedData : IClientVersionValidati public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ClientVersionValidationSuccessData : IClientVersionValidationResultData { public ClientVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -216136,7 +221648,8 @@ public partial record ClientVersionValidationSuccessData : IClientVersionValidat public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 ValidationInProgressData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -216149,8 +221662,9 @@ public partial record ValidationInProgressData : IFusionConfigurationPublishingR public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record EnvironmentsConnectionData { public EnvironmentsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -216167,8 +221681,9 @@ public partial record EnvironmentsConnectionData 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", "15.1.8.0")] + [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 !) @@ -216185,7 +221700,8 @@ public partial record EnvironmentsEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationData { public FusionConfigurationData(global::System.String __typename, global::System.String? downloadUrl = default !, global::System.String? tag = default !) @@ -216200,7 +221716,8 @@ public partial record FusionConfigurationData public global::System.String? Tag { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UploadFusionSubgraphPayloadData { public UploadFusionSubgraphPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? fusionSubgraphVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216215,7 +221732,8 @@ public partial record UploadFusionSubgraphPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionSubgraphVersionData { public FusionSubgraphVersionData(global::System.String __typename, global::System.String? id = default !) @@ -216228,7 +221746,8 @@ public partial record FusionSubgraphVersionData public global::System.String? Id { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216241,7 +221760,8 @@ public partial record InvalidFusionSourceSchemaArchiveErrorData : IUploadFusionS public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CreateMcpFeatureCollectionPayloadData { public CreateMcpFeatureCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216256,7 +221776,8 @@ public partial record CreateMcpFeatureCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record DeleteMcpFeatureCollectionByIdPayloadData { public DeleteMcpFeatureCollectionByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216271,8 +221792,9 @@ public partial record DeleteMcpFeatureCollectionByIdPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record McpFeatureCollectionNotFoundErrorData : IPublishMcpFeatureCollectionErrorData, IUploadMcpFeatureCollectionErrorData, IValidateMcpFeatureCollectionErrorData, IDeleteMcpFeatureCollectionByIdErrorData, IErrorData + // 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? message = default !, global::System.String? mcpFeatureCollectionId = default !) { @@ -216286,8 +221808,9 @@ public partial record McpFeatureCollectionNotFoundErrorData : IPublishMcpFeature public global::System.String? McpFeatureCollectionId { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [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 !) @@ -216304,8 +221827,9 @@ public partial record ApiMcpFeatureCollectionsConnectionData 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", "15.1.8.0")] + [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 !) @@ -216322,7 +221846,8 @@ public partial record ApiMcpFeatureCollectionsEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216337,7 +221862,8 @@ public partial record PublishMcpFeatureCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionVersionNotFoundErrorData : IPublishMcpFeatureCollectionErrorData, IErrorData { public McpFeatureCollectionVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? mcpFeatureCollectionId = default !) @@ -216354,7 +221880,8 @@ public partial record McpFeatureCollectionVersionNotFoundErrorData : IPublishMcp public global::System.String? McpFeatureCollectionId { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionVersionPublishFailedData : IMcpFeatureCollectionVersionPublishResultData { public McpFeatureCollectionVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216369,7 +221896,8 @@ public partial record McpFeatureCollectionVersionPublishFailedData : IMcpFeature public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216382,7 +221910,8 @@ public partial record McpFeatureCollectionVersionPublishSuccessData : IMcpFeatur public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UploadMcpFeatureCollectionPayloadData { public UploadMcpFeatureCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData? mcpFeatureCollectionVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216397,7 +221926,8 @@ public partial record UploadMcpFeatureCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record InvalidMcpFeatureCollectionArchiveErrorData : IUploadMcpFeatureCollectionErrorData, IErrorData { public InvalidMcpFeatureCollectionArchiveErrorData(global::System.String __typename, global::System.String? message = default !) @@ -216410,7 +221940,8 @@ public partial record InvalidMcpFeatureCollectionArchiveErrorData : IUploadMcpFe public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateMcpFeatureCollectionPayloadData { public ValidateMcpFeatureCollectionPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216425,7 +221956,8 @@ public partial record ValidateMcpFeatureCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionVersionValidationFailedData : IMcpFeatureCollectionVersionValidationResultData { public McpFeatureCollectionVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216440,7 +221972,8 @@ public partial record McpFeatureCollectionVersionValidationFailedData : IMcpFeat public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionVersionValidationSuccessData : IMcpFeatureCollectionVersionValidationResultData { public McpFeatureCollectionVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -216453,7 +221986,8 @@ public partial record McpFeatureCollectionVersionValidationSuccessData : IMcpFea public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record McpFeatureCollectionValidationArchiveErrorData : IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData { public McpFeatureCollectionValidationArchiveErrorData(global::System.String __typename, global::System.String? message = default !) @@ -216466,7 +222000,8 @@ public partial record McpFeatureCollectionValidationArchiveErrorData : IMcpFeatu public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CreateMockSchemaPayloadData { public CreateMockSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? mockSchema = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216481,7 +222016,8 @@ public partial record CreateMockSchemaPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record MockSchemaData { 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 !) @@ -216508,7 +222044,8 @@ public partial record MockSchemaData public global::System.String? Url { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record MockSchemaNonUniqueNameErrorData : ICreateMockSchemaErrorData, IUpdateMockSchemaErrorData, IErrorData { public MockSchemaNonUniqueNameErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? name = default !) @@ -216523,7 +222060,8 @@ public partial record MockSchemaNonUniqueNameErrorData : ICreateMockSchemaErrorD public global::System.String? Name { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UserInfoData : IAuthorizationEventLogPrincipalData { public UserInfoData(global::System.String __typename, global::System.String? username = default !) @@ -216536,8 +222074,9 @@ public partial record UserInfoData : IAuthorizationEventLogPrincipalData public global::System.String? Username { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record MockSchemasConnectionData { public MockSchemasConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -216554,8 +222093,9 @@ public partial record MockSchemasConnectionData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record MockSchemasEdgeData { public MockSchemasEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? node = default !) @@ -216572,7 +222112,8 @@ public partial record MockSchemasEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record UpdateMockSchemaPayloadData { public UpdateMockSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? mockSchema = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216587,7 +222128,8 @@ public partial record UpdateMockSchemaPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record MockSchemaNotFoundErrorData : IDeleteMockSchemaByIdErrorData, IUpdateMockSchemaErrorData, IErrorData { public MockSchemaNotFoundErrorData(global::System.String __typename, global::System.String? message = default !) @@ -216600,7 +222142,8 @@ public partial record MockSchemaNotFoundErrorData : IDeleteMockSchemaByIdErrorDa public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CreateOpenApiCollectionPayloadData { public CreateOpenApiCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216615,7 +222158,8 @@ public partial record CreateOpenApiCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record DeleteOpenApiCollectionByIdPayloadData { public DeleteOpenApiCollectionByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216630,8 +222174,9 @@ public partial record DeleteOpenApiCollectionByIdPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record OpenApiCollectionNotFoundErrorData : IValidateOpenApiCollectionErrorData, IDeleteOpenApiCollectionByIdErrorData, IUploadOpenApiCollectionErrorData, IPublishOpenApiCollectionErrorData, IErrorData + // 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 !) { @@ -216645,8 +222190,9 @@ public partial record OpenApiCollectionNotFoundErrorData : IValidateOpenApiColle public global::System.String? OpenApiCollectionId { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiOpenApiCollectionsConnectionData { public ApiOpenApiCollectionsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -216663,8 +222209,9 @@ public partial record ApiOpenApiCollectionsConnectionData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiOpenApiCollectionsEdgeData { public ApiOpenApiCollectionsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? node = default !) @@ -216681,7 +222228,8 @@ public partial record ApiOpenApiCollectionsEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishOpenApiCollectionPayloadData { public PublishOpenApiCollectionPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216696,7 +222244,8 @@ public partial record PublishOpenApiCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionVersionNotFoundErrorData : IPublishOpenApiCollectionErrorData, IErrorData { public OpenApiCollectionVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? openApiCollectionId = default !) @@ -216713,7 +222262,8 @@ public partial record OpenApiCollectionVersionNotFoundErrorData : IPublishOpenAp public global::System.String? OpenApiCollectionId { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionVersionPublishFailedData : IOpenApiCollectionVersionPublishResultData { public OpenApiCollectionVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216728,7 +222278,8 @@ public partial record OpenApiCollectionVersionPublishFailedData : IOpenApiCollec public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionVersionPublishSuccessData : IOpenApiCollectionVersionPublishResultData { public OpenApiCollectionVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -216741,7 +222292,8 @@ public partial record OpenApiCollectionVersionPublishSuccessData : IOpenApiColle public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216756,7 +222308,8 @@ public partial record UploadOpenApiCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216769,7 +222322,8 @@ public partial record InvalidOpenApiCollectionArchiveErrorData : IUploadOpenApiC public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateOpenApiCollectionPayloadData { public ValidateOpenApiCollectionPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216784,7 +222338,8 @@ public partial record ValidateOpenApiCollectionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionVersionValidationFailedData : IOpenApiCollectionVersionValidationResultData { public OpenApiCollectionVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216799,7 +222354,8 @@ public partial record OpenApiCollectionVersionValidationFailedData : IOpenApiCol public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionVersionValidationSuccessData : IOpenApiCollectionVersionValidationResultData { public OpenApiCollectionVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -216812,7 +222368,8 @@ public partial record OpenApiCollectionVersionValidationSuccessData : IOpenApiCo public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OpenApiCollectionValidationArchiveErrorData : IOpenApiCollectionVersionValidationErrorData, IProcessingErrorData { public OpenApiCollectionValidationArchiveErrorData(global::System.String __typename, global::System.String? message = default !) @@ -216825,7 +222382,8 @@ public partial record OpenApiCollectionValidationArchiveErrorData : IOpenApiColl public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216840,7 +222398,8 @@ public partial record CreatePersonalAccessTokenPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216855,7 +222414,8 @@ public partial record PersonalAccessTokenWithSecretData public global::System.String? Secret { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersonalAccessTokenData { 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 !) @@ -216874,7 +222434,8 @@ public partial record PersonalAccessTokenData public global::System.DateTimeOffset? ExpiresAt { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216889,8 +222450,9 @@ public partial record ViewerData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersonalAccessTokensConnectionData { public PersonalAccessTokensConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -216907,8 +222469,9 @@ public partial record PersonalAccessTokensConnectionData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PersonalAccessTokensEdgeData { public PersonalAccessTokensEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? node = default !) @@ -216925,7 +222488,8 @@ public partial record PersonalAccessTokensEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216940,7 +222504,8 @@ public partial record RevokePersonalAccessTokenPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -216953,7 +222518,8 @@ public partial record PersonalAccessTokenNotFoundErrorData : IRevokePersonalAcce public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishSchemaPayloadData { public PublishSchemaPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -216968,8 +222534,9 @@ public partial record PublishSchemaPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record SchemaNotFoundErrorData : IValidateSchemaErrorData, IPublishSchemaErrorData, IErrorData + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record SchemaNotFoundErrorData : IPublishSchemaErrorData, IValidateSchemaErrorData, IErrorData { public SchemaNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? apiId = default !, global::System.String? tag = default !) { @@ -216985,7 +222552,8 @@ public partial record SchemaNotFoundErrorData : IValidateSchemaErrorData, IPubli public global::System.String? Tag { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaVersionPublishFailedData : ISchemaVersionPublishResultData { public SchemaVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -217000,7 +222568,8 @@ public partial record SchemaVersionPublishFailedData : ISchemaVersionPublishResu public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaVersionPublishSuccessData : ISchemaVersionPublishResultData { public SchemaVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) @@ -217013,7 +222582,8 @@ public partial record SchemaVersionPublishSuccessData : ISchemaVersionPublishRes public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaVersionChangeViolationErrorData : ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData { public SchemaVersionChangeViolationErrorData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -217026,7 +222596,8 @@ public partial record SchemaVersionChangeViolationErrorData : ISchemaVersionVali public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] 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 !) @@ -217041,7 +222612,8 @@ public partial record UploadSchemaPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217056,7 +222628,8 @@ public partial record SchemaVersionData public global::System.String? Tag { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217071,7 +222644,8 @@ public partial record ValidateSchemaPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217086,7 +222660,8 @@ public partial record SchemaVersionValidationFailedData : ISchemaVersionValidati public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217101,7 +222676,8 @@ public partial record SchemaVersionValidationSuccessData : ISchemaVersionValidat public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217116,7 +222692,8 @@ public partial record UpdateStagesPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record StagesHavePublishedDependenciesErrorData : IUpdateStagesErrorData, IErrorData { public StagesHavePublishedDependenciesErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? stages = default !) @@ -217131,7 +222708,8 @@ public partial record StagesHavePublishedDependenciesErrorData : IUpdateStagesEr public global::System.Collections.Generic.IReadOnlyList? Stages { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record StageValidationErrorData : IUpdateStagesErrorData, IErrorData { public StageValidationErrorData(global::System.String __typename, global::System.String? message = default !) @@ -217144,13 +222722,15 @@ public partial record StageValidationErrorData : IUpdateStagesErrorData, IErrorD public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IStageConditionData { global::System.String __typename { get; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217163,7 +222743,8 @@ public partial record AfterStageConditionData : IStageConditionData public global::ChilliCream.Nitro.CommandLine.Client.State.StageData? AfterStage { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishedSchemaVersionData { public PublishedSchemaVersionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? version = default !) @@ -217176,7 +222757,8 @@ public partial record PublishedSchemaVersionData public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? Version { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record PublishedClientData { public PublishedClientData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? publishedVersions = default !) @@ -217191,7 +222773,8 @@ public partial record PublishedClientData public global::System.Collections.Generic.IReadOnlyList? PublishedVersions { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record CreateWorkspacePayloadData { public CreateWorkspacePayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -217206,8 +222789,9 @@ public partial record CreateWorkspacePayloadData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record WorkspacesConnectionData { public WorkspacesConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) @@ -217224,8 +222808,9 @@ public partial record WorkspacesConnectionData 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", "15.1.8.0")] + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record WorkspacesEdgeData { public WorkspacesEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? node = default !) @@ -217242,7 +222827,8 @@ public partial record WorkspacesEdgeData public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Node { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record BeginFusionConfigurationPublishPayloadData { public BeginFusionConfigurationPublishPayloadData(global::System.String __typename, global::System.String? requestId = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -217257,7 +222843,8 @@ public partial record BeginFusionConfigurationPublishPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SubgraphInvalidErrorData : IBeginFusionConfigurationPublishErrorData, IErrorData { public SubgraphInvalidErrorData(global::System.String __typename, global::System.String? message = default !) @@ -217270,8 +222857,9 @@ public partial record SubgraphInvalidErrorData : IBeginFusionConfigurationPublis public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record InvalidProcessingStateTransitionErrorData : IBeginFusionConfigurationPublishErrorData, IStartFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, IValidateFusionConfigurationCompositionErrorData, ICancelFusionConfigurationCompositionErrorData, IErrorData + // 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 !) { @@ -217283,7 +222871,8 @@ public partial record InvalidProcessingStateTransitionErrorData : IBeginFusionCo public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationPublishingFailedData : IFusionConfigurationPublishingResultData { public FusionConfigurationPublishingFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.String? failed = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -217301,7 +222890,8 @@ public partial record FusionConfigurationPublishingFailedData : IFusionConfigura public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationPublishingSuccessData : IFusionConfigurationPublishingResultData { public FusionConfigurationPublishingSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.String? success = default !) @@ -217317,7 +222907,8 @@ public partial record FusionConfigurationPublishingSuccessData : IFusionConfigur public global::System.String? Success { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationValidationFailedData : IFusionConfigurationPublishingResultData { public FusionConfigurationValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.String? failed = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -217335,7 +222926,8 @@ public partial record FusionConfigurationValidationFailedData : IFusionConfigura public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationValidationSuccessData : IFusionConfigurationPublishingResultData { public FusionConfigurationValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.String? success = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) @@ -217353,7 +222945,8 @@ public partial record FusionConfigurationValidationSuccessData : IFusionConfigur public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217366,8 +222959,9 @@ public partial record CancelFusionConfigurationCompositionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] - public partial record FusionConfigurationRequestNotFoundErrorData : IStartFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, IValidateFusionConfigurationCompositionErrorData, ICancelFusionConfigurationCompositionErrorData, IErrorData + // 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 !) { @@ -217379,7 +222973,8 @@ public partial record FusionConfigurationRequestNotFoundErrorData : IStartFusion public global::System.String? Message { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217392,7 +222987,8 @@ public partial record CommitFusionConfigurationPublishPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // 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 !) @@ -217405,7 +223001,8 @@ public partial record StartFusionConfigurationCompositionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ValidateFusionConfigurationCompositionPayloadData { public ValidateFusionConfigurationCompositionPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) @@ -217418,7 +223015,8 @@ public partial record ValidateFusionConfigurationCompositionPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.NoStoreAccessorGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ApiClientStoreAccessor : global::StrawberryShake.IStoreAccessor { public global::StrawberryShake.IOperationStore OperationStore => throw new global::System.NotSupportedException("OperationStore is not supported in store less mode"); @@ -217439,7 +223037,8 @@ public partial class ApiClientStoreAccessor : global::StrawberryShake.IStoreAcce namespace Microsoft.Extensions.DependencyInjection { - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "15.1.8.0")] + // StrawberryShake.CodeGeneration.CSharp.Generators.DependencyInjectionGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public static partial class ApiClientServiceCollectionExtensions { public static global::StrawberryShake.IClientBuilder AddApiClient(this global::Microsoft.Extensions.DependencyInjection.IServiceCollection services, global::StrawberryShake.ExecutionStrategy strategy = global::StrawberryShake.ExecutionStrategy.NetworkOnly) @@ -217520,6 +223119,75 @@ public static partial class ApiClientServiceCollectionExtensions 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))); return new global::StrawberryShake.ClientBuilder("ApiClient", services, serviceCollection); @@ -217537,25 +223205,26 @@ 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); - 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, new global::StrawberryShake.Serialization.UrlSerializer("URL")); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, new global::StrawberryShake.Serialization.StringSerializer("Version")); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); diff --git a/src/StrawberryShake/Client/src/Core/Serialization/Base64StringSerializer.cs b/src/StrawberryShake/Client/src/Core/Serialization/Base64StringSerializer.cs new file mode 100644 index 00000000000..34cd01e7a75 --- /dev/null +++ b/src/StrawberryShake/Client/src/Core/Serialization/Base64StringSerializer.cs @@ -0,0 +1,12 @@ +namespace StrawberryShake.Serialization; + +/// +/// This serializer handles base64 string scalars. +/// +public class Base64StringSerializer : ScalarSerializer +{ + public Base64StringSerializer(string typeName = BuiltInScalarNames.Base64String) + : base(typeName) + { + } +} diff --git a/src/StrawberryShake/Client/src/Core/Serialization/BuiltInScalarNames.cs b/src/StrawberryShake/Client/src/Core/Serialization/BuiltInScalarNames.cs index de88864e860..b3516980fe4 100644 --- a/src/StrawberryShake/Client/src/Core/Serialization/BuiltInScalarNames.cs +++ b/src/StrawberryShake/Client/src/Core/Serialization/BuiltInScalarNames.cs @@ -5,25 +5,26 @@ namespace StrawberryShake.Serialization; /// public static class BuiltInScalarNames { - public const string String = nameof(String); - public const string ID = nameof(ID); + public const string Any = nameof(Any); + public const string Base64String = nameof(Base64String); public const string Boolean = nameof(Boolean); - public const string Short = nameof(Short); - public const string Int = nameof(Int); - public const string Long = nameof(Long); - public const string Float = nameof(Float); - public const string Decimal = nameof(Decimal); - public const string Url = nameof(Url); - public const string Upload = nameof(Upload); - public const string UUID = nameof(UUID); public const string Byte = nameof(Byte); public const string ByteArray = nameof(ByteArray); - public const string Any = nameof(Any); - public const string DateTime = nameof(DateTime); public const string Date = nameof(Date); + public const string DateTime = nameof(DateTime); + public const string Decimal = nameof(Decimal); + public const string Float = nameof(Float); + public const string ID = nameof(ID); + public const string Int = nameof(Int); public const string LocalDate = nameof(LocalDate); public const string LocalDateTime = nameof(LocalDateTime); public const string LocalTime = nameof(LocalTime); - public const string TimeSpan = nameof(TimeSpan); + public const string Long = nameof(Long); public const string Name = nameof(Name); + public const string Short = nameof(Short); + public const string String = nameof(String); + public const string TimeSpan = nameof(TimeSpan); + public const string Upload = nameof(Upload); + public const string Url = nameof(Url); + public const string UUID = nameof(UUID); } diff --git a/src/StrawberryShake/Client/test/Core.Tests/Serialization/Base64StringSerializerTests.cs b/src/StrawberryShake/Client/test/Core.Tests/Serialization/Base64StringSerializerTests.cs new file mode 100644 index 00000000000..b5e59546ee1 --- /dev/null +++ b/src/StrawberryShake/Client/test/Core.Tests/Serialization/Base64StringSerializerTests.cs @@ -0,0 +1,70 @@ +namespace StrawberryShake.Serialization; + +public class Base64StringSerializerTests +{ + private Base64StringSerializer Serializer { get; } = new(); + + private Base64StringSerializer CustomSerializer { get; } = new("Abc"); + + [Fact] + public void Parse() + { + // arrange + byte[] buffer = [1]; + + // act + var result = Serializer.Parse(buffer); + + // assert + Assert.Same(buffer, result); + } + + [Fact] + public void Format_Null() + { + // arrange + + // act + var result = Serializer.Format(null); + + // assert + Assert.Null(result); + } + + [Fact] + public void Format_Value() + { + // arrange + byte[] buffer = [1]; + + // act + var result = Serializer.Format(buffer); + + // assert + Assert.Same(buffer, result); + } + + [Fact] + public void TypeName_Default() + { + // arrange + + // act + var typeName = Serializer.TypeName; + + // assert + Assert.Equal("Base64String", typeName); + } + + [Fact] + public void TypeName_Custom() + { + // arrange + + // act + var typeName = CustomSerializer.TypeName; + + // assert + Assert.Equal("Abc", typeName); + } +} diff --git a/src/StrawberryShake/CodeGeneration/src/CodeGeneration.CSharp/Generators/DependencyInjectionGenerator.cs b/src/StrawberryShake/CodeGeneration/src/CodeGeneration.CSharp/Generators/DependencyInjectionGenerator.cs index 23881b32572..9496d0a14bc 100644 --- a/src/StrawberryShake/CodeGeneration/src/CodeGeneration.CSharp/Generators/DependencyInjectionGenerator.cs +++ b/src/StrawberryShake/CodeGeneration/src/CodeGeneration.CSharp/Generators/DependencyInjectionGenerator.cs @@ -24,25 +24,26 @@ public class DependencyInjectionGenerator : CodeGenerator s_alternativeTypeNames = new() diff --git a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/BuiltInScalarNames.cs b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/BuiltInScalarNames.cs index 0b3bf9e6496..e6831a7c33f 100644 --- a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/BuiltInScalarNames.cs +++ b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/BuiltInScalarNames.cs @@ -12,6 +12,7 @@ public static class BuiltInScalarNames "Url", "Uuid", ScalarNames.Any, + ScalarNames.Base64String, ScalarNames.Boolean, ScalarNames.Byte, ScalarNames.ByteArray, diff --git a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeInfos.cs b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeInfos.cs index e7e56975c4c..5616d0de206 100644 --- a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeInfos.cs +++ b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeInfos.cs @@ -395,6 +395,10 @@ public sealed class TypeInfos TypeNames.LocalTimeSerializer, new RuntimeTypeInfo(TypeNames.LocalTimeSerializer) }, + { + TypeNames.Base64StringSerializer, + new RuntimeTypeInfo(TypeNames.Base64StringSerializer) + }, { TypeNames.ByteArraySerializer, new RuntimeTypeInfo(TypeNames.ByteArraySerializer) diff --git a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeNames.cs b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeNames.cs index 1a1a183c52b..5bdd09c5f71 100644 --- a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeNames.cs +++ b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/TypeNames.cs @@ -292,6 +292,9 @@ public static class TypeNames public const string LocalTimeSerializer = StrawberryShakeNamespace + "Serialization.LocalTimeSerializer"; + public const string Base64StringSerializer = + StrawberryShakeNamespace + "Serialization.Base64StringSerializer"; + public const string ByteArraySerializer = StrawberryShakeNamespace + "Serialization.ByteArraySerializer"; diff --git a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/Utilities/SchemaHelper.cs b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/Utilities/SchemaHelper.cs index 02d7d72752d..49f78db255b 100644 --- a/src/StrawberryShake/CodeGeneration/src/CodeGeneration/Utilities/SchemaHelper.cs +++ b/src/StrawberryShake/CodeGeneration/src/CodeGeneration/Utilities/SchemaHelper.cs @@ -226,6 +226,11 @@ private static void AddDefaultScalarInfos( typeName: ScalarNames.Any, runtimeType: TypeNames.JsonElement, serializationType: TypeNames.JsonElement); + TryAddLeafType( + leafTypes, + typeName: ScalarNames.Base64String, + runtimeType: TypeNames.ByteArray, + serializationType: TypeNames.ByteArray); TryAddLeafType( leafTypes, typeName: ScalarNames.Boolean, diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/AnyScalarDefaultSerializationTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/AnyScalarDefaultSerializationTest.Client.cs index a10fb8c3b59..ca4de13b70a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/AnyScalarDefaultSerializationTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/AnyScalarDefaultSerializationTest.Client.cs @@ -48,25 +48,26 @@ public static partial class AnyScalarDefaultSerializationClientServiceCollection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("AnyScalarDefaultSerializationClient")); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.AnyScalarDefaultSerialization.State.GetJsonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/EntityIdOrDataTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/EntityIdOrDataTest.Client.cs index 1728d827aea..eb7dcf517bd 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/EntityIdOrDataTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/EntityIdOrDataTest.Client.cs @@ -50,25 +50,26 @@ public static partial class EntityIdOrDataClientServiceCollectionExtensions }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.EntityIdOrData.State.GetFoo_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.EntityIdOrData.State.GetFoo_Foo_Baz2FromBaz2EntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.EntityIdOrData.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/LocalTypesTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/LocalTypesTest.Client.cs index b28d0c7003d..ce35a9b4dfa 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/LocalTypesTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/LocalTypesTest.Client.cs @@ -48,25 +48,26 @@ public static partial class LocalTypesClientServiceCollectionExtensions var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("LocalTypesClient")); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.LocalTypes.State.LocalTypesResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs index 595326ef439..2abb0d81d54 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs @@ -65,25 +65,26 @@ public static partial class MultiProfileClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.MultiProfile.State.GetHero_Hero_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.MultiProfile.State.GetHero_Hero_Friends_Nodes_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.MultiProfile.State.GetHeroResultFactory>(services); @@ -135,25 +136,26 @@ public static partial class MultiProfileClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.MultiProfile.State.GetHero_Hero_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.MultiProfile.State.GetHero_Hero_Friends_Nodes_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.MultiProfile.State.GetHeroResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs index d6e6d05215e..5df1f3b3523 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs @@ -52,25 +52,26 @@ public static partial class StarWarsGetFriendsDeferInListClientServiceCollection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferInList.State.GetHero_Hero_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferInList.State.GetHero_Hero_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferInList.State.GetHero_Hero_Friends_Nodes_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferInList.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs index db82c5361a7..764bbb3bed3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs @@ -52,25 +52,26 @@ public static partial class StarWarsGetFriendsDeferredClientServiceCollectionExt global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferred.State.GetHero_Hero_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferred.State.GetHero_Hero_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferred.State.GetHero_Hero_Friends_Nodes_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsDeferred.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsNoStoreTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsNoStoreTest.Client.cs index 3aab7d854ee..e650542b1e3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsNoStoreTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsNoStoreTest.Client.cs @@ -46,25 +46,26 @@ public static partial class StarWarsGetFriendsNoStoreClientServiceCollectionExte var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("StarWarsGetFriendsNoStoreClient")); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriendsNoStore.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsTest.Client.cs index ecfc63e6c69..ba063e46531 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsTest.Client.cs @@ -52,25 +52,26 @@ public static partial class StarWarsGetFriendsClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriends.State.GetHero_Hero_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriends.State.GetHero_Hero_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriends.State.GetHero_Hero_Friends_Nodes_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetFriends.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTest.Client.cs index 8a34c2613ac..202dd2cee42 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTest.Client.cs @@ -50,25 +50,26 @@ public static partial class StarWarsGetHeroClientServiceCollectionExtensions }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHero.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHero.State.GetHero_Hero_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHero.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTraitsTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTraitsTest.Client.cs index 62a93ee778e..61bb3bb905f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTraitsTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroTraitsTest.Client.cs @@ -50,25 +50,26 @@ public static partial class StarWarsGetHeroTraitsClientServiceCollectionExtensio }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHeroTraits.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHeroTraits.State.GetHero_Hero_HumanFromHumanEntityMapper>(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, new global::StrawberryShake.Serialization.JsonSerializer("JSON")); 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHeroTraits.State.GetHeroResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs index 2ad842c5090..9f25beead87 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs @@ -50,25 +50,26 @@ public static partial class StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveCl }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHeroWithFragmentIncludeAndSkipDirective.State.GetHeroWithFragmentIncludeAndSkipDirective_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHeroWithFragmentIncludeAndSkipDirective.State.GetHeroWithFragmentIncludeAndSkipDirective_Hero_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsGetHeroWithFragmentIncludeAndSkipDirective.State.GetHeroWithFragmentIncludeAndSkipDirectiveResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs index 1214a029504..5c6decc0012 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs @@ -49,25 +49,26 @@ public static partial class StarWarsIntrospectionClientServiceCollectionExtensio return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("StarWarsIntrospectionClient")); }); 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsIntrospection.State.IntrospectionQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubCompletionTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubCompletionTest.Client.cs index eedcb8f8751..f45fe273c79 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubCompletionTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubCompletionTest.Client.cs @@ -56,25 +56,26 @@ public static partial class StarWarsOnReviewSubCompletionClientServiceCollection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.InMemory.InMemoryConnection(async ct => await clientFactory.CreateAsync("StarWarsOnReviewSubCompletionClient", ct)); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsOnReviewSubCompletion.State.OnReviewSubResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); @@ -99,25 +100,26 @@ public static partial class StarWarsOnReviewSubCompletionClientServiceCollection var sessionPool = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.WebSockets.WebSocketConnection(async ct => await sessionPool.CreateAsync("StarWarsOnReviewSubCompletionClient", ct)); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsOnReviewSubCompletion.State.OnReviewSubResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubGraphQLSSETest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubGraphQLSSETest.Client.cs index a6fec909001..0cf70a65375 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubGraphQLSSETest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubGraphQLSSETest.Client.cs @@ -48,25 +48,26 @@ public static partial class StarWarsOnReviewSubGraphQLSSEClientServiceCollection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("StarWarsOnReviewSubGraphQLSSEClient")); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsOnReviewSubGraphQLSSE.State.OnReviewSubResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubNoStoreTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubNoStoreTest.Client.cs index 49e0c165321..71fc28bd464 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubNoStoreTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsOnReviewSubNoStoreTest.Client.cs @@ -46,25 +46,26 @@ public static partial class StarWarsOnReviewSubNoStoreClientServiceCollectionExt var sessionPool = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.WebSockets.WebSocketConnection(async ct => await sessionPool.CreateAsync("StarWarsOnReviewSubNoStoreClient", ct)); }); - 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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsOnReviewSubNoStore.State.OnReviewSubResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnInterfacesTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnInterfacesTest.Client.cs index 7d399c75161..9d14554f16f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnInterfacesTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnInterfacesTest.Client.cs @@ -50,25 +50,26 @@ public static partial class StarWarsTypeNameOnInterfacesClientServiceCollectionE }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnInterfaces.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnInterfaces.State.GetHero_Hero_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnInterfaces.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnUnionsTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnUnionsTest.Client.cs index 33e9e6f10e7..dcf0daf59b5 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnUnionsTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsTypeNameOnUnionsTest.Client.cs @@ -51,25 +51,26 @@ public static partial class StarWarsTypeNameOnUnionsClientServiceCollectionExten global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnUnions.State.SearchHero_Search_StarshipFromStarshipEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnUnions.State.SearchHero_Search_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnUnions.State.SearchHero_Search_DroidFromDroidEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsTypeNameOnUnions.State.SearchHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsUnionListTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsUnionListTest.Client.cs index 85ea6910daa..5d7963f7eef 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsUnionListTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsUnionListTest.Client.cs @@ -53,25 +53,26 @@ public static partial class StarWarsUnionListClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsUnionList.State.SearchHero_Search_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsUnionList.State.SearchHero_Search_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsUnionList.State.SearchHero_Search_Friends_Nodes_HumanFromHumanEntityMapper>(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::StrawberryShake.CodeGeneration.CSharp.Integration.StarWarsUnionList.State.SearchHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs index ef9509a219e..fa2fbc38465 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs @@ -49,25 +49,26 @@ public static partial class UploadScalarClientServiceCollectionExtensions return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("UploadScalarClient")); }); 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); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs index 8b0a258a9a9..ece3978d919 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs @@ -49,25 +49,26 @@ public static partial class UploadScalar_InMemoryClientServiceCollectionExtensio return new global::StrawberryShake.Transport.InMemory.InMemoryConnection(async ct => await clientFactory.CreateAsync("UploadScalar_InMemoryClient", ct)); }); 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); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/ScalarGeneratorTests.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/ScalarGeneratorTests.cs index f9df6817d82..4380951ec76 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/ScalarGeneratorTests.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/ScalarGeneratorTests.cs @@ -15,6 +15,14 @@ public void Simple_Custom_Scalar() => "scalar Email", "extend schema @key(fields: \"id\")"); + [Fact] + public void Base64String_ScalarType() => + AssertResult( + "query GetAttachment { base64String }", + "type Query { base64String: Base64String! }", + "scalar Base64String", + "extend schema @key(fields: \"id\")"); + [Fact] public void ByteArray_ScalarType() => AssertResult( diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Combined.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Combined.snap index 8f2c7920fba..33a4d1eb920 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Combined.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Combined.snap @@ -1516,25 +1516,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.OnPerson_OnPerson_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.CreatePerson_CreatePerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_DifferentTransportMethods.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_DifferentTransportMethods.snap index 508ab03bd18..c64b85f1953 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_DifferentTransportMethods.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_DifferentTransportMethods.snap @@ -1521,25 +1521,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.OnPerson_OnPerson_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.CreatePerson_CreatePerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_InMemory.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_InMemory.snap index fef7f528b39..ddb3c71d59f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_InMemory.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_InMemory.snap @@ -1511,25 +1511,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.OnPerson_OnPerson_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.CreatePerson_CreatePerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_MultiProfile.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_MultiProfile.snap index b4da1139ab9..e48b6094bc6 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_MultiProfile.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_MultiProfile.snap @@ -1532,25 +1532,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.OnPerson_OnPerson_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.CreatePerson_CreatePerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); @@ -1594,25 +1595,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.OnPerson_OnPerson_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.CreatePerson_CreatePerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Mutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Mutation.snap index a7e1cc07031..69d0bc1be65 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Mutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Mutation.snap @@ -608,25 +608,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.CreatePerson_CreatePerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.CreatePersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Query.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Query.snap index 8956a5ce9bb..233cfbcd385 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Query.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Query.snap @@ -608,25 +608,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Subscription.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Subscription.snap index 4cae82d70f9..8d2367fa6ba 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Subscription.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/DependencyInjectionGeneratorTests.Default_Subscription.snap @@ -571,25 +571,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.WebSockets.WebSocketConnection(async ct => await sessionPool.CreateAsync("FooClient", ct)); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.OnPerson_OnPerson_PersonFromPersonEntityMapper>(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::Foo.Bar.State.OnPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes.snap index d5721981faf..a584f1c6c01 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes.snap @@ -1053,25 +1053,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetStore2_SearchableStore_SearchableStoreFromSearchableStoreEntityMapper>(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::Foo.Bar.State.GetStore2ResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes_With_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes_With_Records.snap index 80d842c0ead..e9117a1d797 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes_With_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataInEntity_UnionDataTypes_With_Records.snap @@ -1053,25 +1053,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetStore2_SearchableStore_SearchableStoreFromSearchableStoreEntityMapper>(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::Foo.Bar.State.GetStore2ResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes.snap index 3680a103d57..c16372de11a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes.snap @@ -748,25 +748,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SearchSomethingResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes_With_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes_With_Records.snap index 056b8b48a43..c97621a0bea 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes_With_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_InterfaceDataTypes_With_Records.snap @@ -748,25 +748,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SearchSomethingResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes.snap index 1a68d8968f1..9772668daca 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes.snap @@ -672,25 +672,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SearchSomethingResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes_With_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes_With_Records.snap index 987ede945c2..b40d73e6286 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes_With_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_BookClient_DataOnly_UnionDataTypes_With_Records.snap @@ -672,25 +672,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SearchSomethingResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity.snap index 7c733153e58..65f3084567f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity.snap @@ -892,25 +892,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeople_People_Nodes_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPeopleResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity_With_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity_With_Records.snap index 7a672c0284a..0ecc82a8ca3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity_With_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_ConnectionNotAnEntity_With_Records.snap @@ -892,25 +892,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeople_People_Nodes_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPeopleResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap index bc5512c67d5..98b4cfe69db 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap @@ -2468,25 +2468,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeople_People_Nodes_Messages_Nodes_Sender_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.WriteMessage_SendMessage_Message_MessageFromMessageEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.WriteMessage_SendMessage_Message_Sender_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPeopleResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap index 0c208f01e55..42a22c8da6d 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap @@ -2468,25 +2468,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeople_People_Nodes_Messages_Nodes_Sender_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.WriteMessage_SendMessage_Message_MessageFromMessageEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.WriteMessage_SendMessage_Message_Sender_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPeopleResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_ComplexEntity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_ComplexEntity.snap index 11df07ea650..a43a17d7e4e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_ComplexEntity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_ComplexEntity.snap @@ -641,25 +641,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_DateTimeOffset_Entity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_DateTimeOffset_Entity.snap index b2acc8a0621..8f094a94df3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_DateTimeOffset_Entity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_DateTimeOffset_Entity.snap @@ -638,25 +638,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_IdEntity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_IdEntity.snap index 6cae9debb16..24dab88dab5 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_IdEntity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_IdEntity.snap @@ -636,25 +636,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_NoEntity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_NoEntity.snap index afd98c74db3..63cfffdb3ca 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_NoEntity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_NoEntity.snap @@ -579,25 +579,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_UUID_Entity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_UUID_Entity.snap index cef7819bd6f..3a85ba31302 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_UUID_Entity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityIdFactoryGeneratorTests.Simple_UUID_Entity.snap @@ -638,25 +638,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPerson_Person_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceField.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceField.snap index 228cade5ea3..d6a4f23d0b1 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceField.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceField.snap @@ -1084,25 +1084,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_Baz2FromBaz2EntityMapper>(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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceList.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceList.snap index 82e71435bf5..f191f87c727 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceList.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.InterfaceList.snap @@ -1127,25 +1127,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_Baz2FromBaz2EntityMapper>(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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.NonNullableValueTypeId.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.NonNullableValueTypeId.snap index 463df4de700..6008f1c0ecf 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.NonNullableValueTypeId.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.NonNullableValueTypeId.snap @@ -1081,25 +1081,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_Baz2FromBaz2EntityMapper>(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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionField.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionField.snap index 5c07e0c2df3..908ae43ead3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionField.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionField.snap @@ -1044,25 +1044,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_Baz2FromBaz2EntityMapper>(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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionList.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionList.snap index 57472960795..3366c1c67b7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionList.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionList.snap @@ -1087,25 +1087,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Foo_Baz2FromBaz2EntityMapper>(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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionListInEntity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionListInEntity.snap index 383e2c2ca57..e35b49ecd17 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionListInEntity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionListInEntity.snap @@ -1285,25 +1285,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Test_TestFromTestEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Test_Foo_BazFromBazEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFoo_Test_Foo_Baz2FromBaz2EntityMapper>(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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap index 0163249f734..45ee2fdc604 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap @@ -1217,25 +1217,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.StoreUserSettingFor_StoreUserSettingFor_UserSettingSuccessFromUserSettingSuccessEntityMapper>(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::Foo.Bar.State.StoreUserSettingForResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_ChatClient_InvalidNullCheck.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_ChatClient_InvalidNullCheck.snap index 84cce4e42d2..8106f5045b3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_ChatClient_InvalidNullCheck.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_ChatClient_InvalidNullCheck.snap @@ -1068,25 +1068,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeople_Me_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeople_Me_Friends_Nodes_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPeopleResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_NoErrors.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_NoErrors.snap index e177b91b363..d3e74cb910f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_NoErrors.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ErrorGeneratorTests.Generate_NoErrors.snap @@ -868,25 +868,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_HumanFromHumanEntityMapper>(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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap index a84cc61cb70..1064fb5d379 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap @@ -928,25 +928,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.ChangeHomePlanet_ChangeHomePlanet_Human_HumanFromHumanEntityMapper>(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::Foo.Bar.State.ChangeHomePlanetResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap index c4ffa6603d1..183914bf067 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap @@ -932,25 +932,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.Readonly_ReadonlyEntity_readonlyEntityFromreadonlyEntityEntityMapper>(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::Foo.Bar.State.ReadonlyResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap index f4522fc135d..1e371875342 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap @@ -827,25 +827,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.TestResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap index 6969f6e762f..e8f2fe6a2af 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap @@ -807,25 +807,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.TestResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap index 2323befa550..b76a5df07eb 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap @@ -1127,25 +1127,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap index 049cc7dcee9..6a2dda6747f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap @@ -821,25 +821,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.TestResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap index a6152d33db8..c640a626ebd 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap @@ -455,25 +455,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.TestResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap index 27a2064ab13..98bc589766d 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap @@ -455,25 +455,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.TestResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap index f608ca05d04..b9c547bbd25 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap @@ -625,25 +625,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.TestResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap index f841fba2f87..5f699f9dd57 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap @@ -966,25 +966,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap index 9a2a2610e81..9d3194ef03b 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap @@ -570,25 +570,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.Test_1ResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap index 0439a0c7e05..a4d6a4b278f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap @@ -889,25 +889,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.CreateReviewResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Default_Names.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Default_Names.snap index 4ad4b12a4a5..d86d345a492 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Default_Names.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Default_Names.snap @@ -728,25 +728,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap index e5757c831aa..7648af98530 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap @@ -1131,25 +1131,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap index 412bc06cef9..42897149741 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap @@ -751,25 +751,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap index 5a2578c738b..f0b81072c06 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap @@ -764,25 +764,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.CreateReviewMutResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap index e7e353407e9..54f15bf13c7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap @@ -753,25 +753,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SearchHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsUnionList.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsUnionList.snap index 9eafc4b4916..269f514ccf0 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsUnionList.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.StarWarsUnionList.snap @@ -763,25 +763,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SearchHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Subscription_With_Default_Names.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Subscription_With_Default_Names.snap index 45228bc15e7..f7ba6e2a6f8 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Subscription_With_Default_Names.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Subscription_With_Default_Names.snap @@ -498,25 +498,26 @@ namespace Microsoft.Extensions.DependencyInjection var sessionPool = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.WebSockets.WebSocketConnection(async ct => await sessionPool.CreateAsync("FooClient", ct)); }); - 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::Foo.Bar.State.OnReviewSubResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap index 595786b6d4d..8a38bb2d021 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap @@ -6021,25 +6021,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.ReadMessages_Message_Recipient_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.ReadMessages_Message_Sender_PersonFromPersonEntityMapper>(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::Foo.Bar.State.GetPeopleResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap index 0cf86e770c6..a2352559f52 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap @@ -554,25 +554,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetSomethingResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap index 0cf86e770c6..a2352559f52 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap @@ -554,25 +554,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetSomethingResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap index 41be7eabb84..7a161bb44e4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap @@ -710,25 +710,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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)))); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap index 9fcba176041..14f996e0019 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap @@ -565,25 +565,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetSomethingResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap index 9c2b5343aea..0f3341d2a59 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap @@ -1603,25 +1603,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.TestOperationResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Response_Name_Is_Correctly_Cased.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Response_Name_Is_Correctly_Cased.snap index 41993bbabc2..e12297eee3d 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Response_Name_Is_Correctly_Cased.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Response_Name_Is_Correctly_Cased.snap @@ -412,25 +412,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetSomethingResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/PersistedOperationGeneratorTests.Simple_Custom_Scalar.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/PersistedOperationGeneratorTests.Simple_Custom_Scalar.snap index e74e5d5ba62..516168fb0f7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/PersistedOperationGeneratorTests.Simple_Custom_Scalar.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/PersistedOperationGeneratorTests.Simple_Custom_Scalar.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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, new global::StrawberryShake.Serialization.StringSerializer("Email")); 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::Foo.Bar.State.GetPersonResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap index d0b0bbcd671..a53baa6bfdf 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap @@ -1138,25 +1138,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.DecodeVIN_DecodeVIN_VehicleMake_VehicleMakeFromVehicleMakeEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.DecodeVIN_DecodeVIN_VehicleModel_VehicleModelFromVehicleModelEntityMapper>(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::Foo.Bar.State.DecodeVINResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Comments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Comments.snap index e2137010ebd..b775d0b96b9 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Comments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Comments.snap @@ -1213,25 +1213,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Complex_Types.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Complex_Types.snap index 10d018caee9..8269cf3b807 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Complex_Types.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_Complex_Types.snap @@ -1123,25 +1123,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetFooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_NullableData.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_NullableData.snap index 7188347f950..cad20c26ea0 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_NullableData.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Operation_With_NullableData.snap @@ -738,25 +738,26 @@ namespace Microsoft.Extensions.DependencyInjection var sessionPool = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.WebSockets.WebSocketConnection(async ct => await sessionPool.CreateAsync("FooClient", ct)); }); - 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::Foo.Bar.State.OnFooUpdatedResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Scalar.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Scalar.snap index 668b1ce7e9b..58dff86776e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Scalar.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Scalar.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Type.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Type.snap index 7cd5f3529a7..8d4eed71c2e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Type.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Any_Type.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Base64String_ScalarType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Base64String_ScalarType.snap new file mode 100644 index 00000000000..f4b3d016271 --- /dev/null +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Base64String_ScalarType.snap @@ -0,0 +1,470 @@ +// ReSharper disable ArrangeObjectCreationWhenTypeEvident +// ReSharper disable BuiltInTypeReferenceStyle +// ReSharper disable ConvertToAutoProperty +// ReSharper disable InconsistentNaming +// ReSharper disable PartialTypeWithSinglePart +// ReSharper disable PreferConcreteValueOverDefault +// ReSharper disable RedundantNameQualifier +// ReSharper disable SuggestVarOrType_SimpleTypes +// ReSharper disable UnusedMember.Global +// ReSharper disable UnusedMethodReturnValue.Local +// ReSharper disable UnusedType.Global +// ReSharper disable UnusedVariable + +// FooClient + +// +#nullable enable annotations +#nullable disable warnings + +namespace Foo.Bar +{ + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class GetAttachmentResult : global::System.IEquatable, IGetAttachmentResult + { + public GetAttachmentResult(global::System.Byte[] base64String) + { + Base64String = base64String; + } + + public global::System.Byte[] Base64String { get; } + + public virtual global::System.Boolean Equals(GetAttachmentResult? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(Base64String, other.Base64String)); + } + + 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((GetAttachmentResult)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Base64String.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IGetAttachmentResult + { + public global::System.Byte[] Base64String { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the GetAttachment GraphQL operation + /// + /// query GetAttachment { + /// base64String + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class GetAttachmentQueryDocument : global::StrawberryShake.IDocument + { + private GetAttachmentQueryDocument() + { + } + + public static GetAttachmentQueryDocument Instance { get; } = new GetAttachmentQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => "query GetAttachment { base64String }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "23d45806e3f93f5427fba6b7e94bd0bda059a77c"); + + 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 GetAttachment GraphQL operation + /// + /// query GetAttachment { + /// base64String + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class GetAttachmentQuery : global::Foo.Bar.IGetAttachmentQuery + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public GetAttachmentQuery(global::StrawberryShake.IOperationExecutor operationExecutor) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + } + + private GetAttachmentQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure) + { + _operationExecutor = operationExecutor; + _configure = configure; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IGetAttachmentResult); + + public global::Foo.Bar.IGetAttachmentQuery With(global::System.Action configure) + { + return new global::Foo.Bar.GetAttachmentQuery(_operationExecutor, _configure.Add(configure)); + } + + public global::Foo.Bar.IGetAttachmentQuery WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::Foo.Bar.IGetAttachmentQuery 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.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest() + { + return CreateRequest(null); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return new global::StrawberryShake.OperationRequest(id: GetAttachmentQueryDocument.Instance.Hash.Value, name: "GetAttachment", document: GetAttachmentQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the GetAttachment GraphQL operation + /// + /// query GetAttachment { + /// base64String + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IGetAttachmentQuery : global::StrawberryShake.IOperationRequestFactory + { + global::Foo.Bar.IGetAttachmentQuery With(global::System.Action configure); + global::Foo.Bar.IGetAttachmentQuery WithRequestUri(global::System.Uri requestUri); + global::Foo.Bar.IGetAttachmentQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ClientGenerator + /// + /// Represents the FooClient GraphQL client + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class FooClient : global::Foo.Bar.IFooClient + { + private readonly global::Foo.Bar.IGetAttachmentQuery _getAttachment; + public FooClient(global::Foo.Bar.IGetAttachmentQuery getAttachment) + { + _getAttachment = getAttachment ?? throw new global::System.ArgumentNullException(nameof(getAttachment)); + } + + public static global::System.String ClientName => "FooClient"; + public global::Foo.Bar.IGetAttachmentQuery GetAttachment => _getAttachment; + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ClientInterfaceGenerator + /// + /// Represents the FooClient GraphQL client + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFooClient + { + global::Foo.Bar.IGetAttachmentQuery GetAttachment { get; } + } +} + +namespace Foo.Bar.State +{ + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class GetAttachmentResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + private readonly global::StrawberryShake.IEntityStore _entityStore; + public GetAttachmentResultFactory(global::StrawberryShake.IEntityStore entityStore) + { + _entityStore = entityStore ?? throw new global::System.ArgumentNullException(nameof(entityStore)); + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::Foo.Bar.IGetAttachmentResult); + + public GetAttachmentResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (snapshot is null) + { + snapshot = _entityStore.CurrentSnapshot; + } + + if (dataInfo is GetAttachmentResultInfo info) + { + return new GetAttachmentResult(info.Base64String); + } + + throw new global::System.ArgumentException("GetAttachmentResultInfo expected."); + } + + 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 GetAttachmentResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + private readonly global::System.Collections.Generic.IReadOnlyCollection _entityIds; + private readonly global::System.UInt64 _version; + public GetAttachmentResultInfo(global::System.Byte[] base64String, global::System.Collections.Generic.IReadOnlyCollection entityIds, global::System.UInt64 version) + { + Base64String = base64String; + _entityIds = entityIds ?? throw new global::System.ArgumentNullException(nameof(entityIds)); + _version = version; + } + + public global::System.Byte[] Base64String { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => _entityIds; + public global::System.UInt64 Version => _version; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new GetAttachmentResultInfo(Base64String, _entityIds, version); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class GetAttachmentBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.IEntityStore _entityStore; + private readonly global::StrawberryShake.IEntityIdSerializer _idSerializer; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _base64StringParser; + public GetAttachmentBuilder(global::StrawberryShake.IEntityStore entityStore, global::StrawberryShake.IEntityIdSerializer idSerializer, global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _entityStore = entityStore ?? throw new global::System.ArgumentNullException(nameof(entityStore)); + _idSerializer = idSerializer ?? throw new global::System.ArgumentNullException(nameof(idSerializer)); + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _base64StringParser = serializerResolver.GetLeafValueParser("Base64String") ?? throw new global::System.ArgumentException("No serializer for type `Base64String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + var entityIds = new global::System.Collections.Generic.HashSet(); + global::StrawberryShake.IEntityStoreSnapshot snapshot = default !; + _entityStore.Update(session => + { + snapshot = session.CurrentSnapshot; + }); + return new GetAttachmentResultInfo(Deserialize_NonNullableByteArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "base64String")), entityIds, snapshot.Version); + } + + private global::System.Byte[] Deserialize_NonNullableByteArray(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 _base64StringParser.Parse(obj.Value.GetBytesFromBase64()!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.EntityIdFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class FooClientEntityIdFactory : global::StrawberryShake.IEntityIdSerializer + { + private static readonly global::System.Text.Json.JsonWriterOptions _options = new global::System.Text.Json.JsonWriterOptions() + { + Indented = false + }; + public global::StrawberryShake.EntityId Parse(global::System.Text.Json.JsonElement obj) + { + global::System.String __typename = obj.GetProperty("__typename").GetString()!; + return __typename switch + { + _ => throw new global::System.NotSupportedException()}; + } + + public global::System.String Format(global::StrawberryShake.EntityId entityId) + { + return entityId.Name switch + { + _ => throw new global::System.NotSupportedException()}; + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.StoreAccessorGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class FooClientStoreAccessor : global::StrawberryShake.StoreAccessor + { + public FooClientStoreAccessor(global::StrawberryShake.IOperationStore operationStore, global::StrawberryShake.IEntityStore entityStore, global::StrawberryShake.IEntityIdSerializer entityIdSerializer, global::System.Collections.Generic.IEnumerable requestFactories, global::System.Collections.Generic.IEnumerable resultDataFactories) : base(operationStore, entityStore, entityIdSerializer, requestFactories, resultDataFactories) + { + } + } +} + +namespace Microsoft.Extensions.DependencyInjection +{ + // StrawberryShake.CodeGeneration.CSharp.Generators.DependencyInjectionGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public static partial class FooClientServiceCollectionExtensions + { + public static global::StrawberryShake.IClientBuilder AddFooClient(this global::Microsoft.Extensions.DependencyInjection.IServiceCollection services, global::StrawberryShake.ExecutionStrategy strategy = global::StrawberryShake.ExecutionStrategy.NetworkOnly) + { + var serviceCollection = new global::Microsoft.Extensions.DependencyInjection.ServiceCollection(); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => + { + ConfigureClientDefault(sp, serviceCollection, strategy); + return new ClientServiceProvider(global::Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(serviceCollection)); + }); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => new global::Foo.Bar.State.FooClientStoreAccessor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)), global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)), global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)), global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(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))); + return new global::StrawberryShake.ClientBuilder("FooClient", services, serviceCollection); + } + + private static global::Microsoft.Extensions.DependencyInjection.IServiceCollection ConfigureClientDefault(global::System.IServiceProvider parentServices, global::Microsoft.Extensions.DependencyInjection.ServiceCollection services, global::StrawberryShake.ExecutionStrategy strategy = global::StrawberryShake.ExecutionStrategy.NetworkOnly) + { + global::Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(services, sp => new global::StrawberryShake.OperationStore(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => + { + var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); + return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); + }); + 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::Foo.Bar.State.GetAttachmentResultFactory>(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::Foo.Bar.State.GetAttachmentBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.OperationExecutor(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.ServiceProviderServiceExtensions.GetRequiredService(sp), strategy)); + 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); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + return services; + } + + private sealed class ClientServiceProvider : System.IServiceProvider, System.IDisposable + { + private readonly System.IServiceProvider _provider; + public ClientServiceProvider(System.IServiceProvider provider) + { + _provider = provider; + } + + public object? GetService(System.Type serviceType) + { + return _provider.GetService(serviceType); + } + + public void Dispose() + { + if (_provider is System.IDisposable d) + { + d.Dispose(); + } + } + } + } +} + + diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.ByteArray_ScalarType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.ByteArray_ScalarType.snap index 6dc99b6edef..1e951e02639 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.ByteArray_ScalarType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.ByteArray_ScalarType.snap @@ -408,25 +408,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetAttachmentResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Complete_Schema_With_UUID_And_DateTime.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Complete_Schema_With_UUID_And_DateTime.snap index 589072e5eb2..72dbf955984 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Complete_Schema_With_UUID_And_DateTime.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Complete_Schema_With_UUID_And_DateTime.snap @@ -1103,25 +1103,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.AllExpenses_Expense_ExpenseFromExpenseEntityMapper>(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::Foo.Bar.State.AllExpensesResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType.snap index 44b8ecaf336..afe570067ef 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap index 531f09f7735..e28a095d6fa 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap @@ -567,25 +567,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType.snap index ed4780836e1..5c09ae4b164 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType_And_RuntimeType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType_And_RuntimeType.snap index ab7ad3c922a..8141c30d0bf 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType_And_RuntimeType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_SerializationType_And_RuntimeType.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_Unknown_RuntimeType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_Unknown_RuntimeType.snap index 2a72998505b..bf911d9faab 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_Unknown_RuntimeType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_Unknown_RuntimeType.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetPersonResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap index 34c13f9cddf..c1f9f9d766a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap @@ -428,25 +428,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetIdResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap index 07a9e4ad7c9..93dcde1e4f7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap @@ -433,25 +433,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetIdResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap index 3c1a48cc36d..98acc794912 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap @@ -435,25 +435,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetIdResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Only_Custom_Scalars.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Only_Custom_Scalars.snap index 3ee7b740c57..0726a9888cf 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Only_Custom_Scalars.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Only_Custom_Scalars.snap @@ -555,25 +555,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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, new global::StrawberryShake.Serialization.StringSerializer("Email")); 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::Foo.Bar.State.GetPersonResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap index d1b261e8f50..e424285d2d7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap @@ -635,25 +635,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetAllResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Simple_Custom_Scalar.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Simple_Custom_Scalar.snap index fb28f541d40..fbe52529af3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Simple_Custom_Scalar.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Simple_Custom_Scalar.snap @@ -581,25 +581,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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, new global::StrawberryShake.Serialization.StringSerializer("Email")); 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::Foo.Bar.State.GetPersonResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.TimeSpan_Not_Detected.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.TimeSpan_Not_Detected.snap index df2433b5342..62b3b5b7071 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.TimeSpan_Not_Detected.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.TimeSpan_Not_Detected.snap @@ -803,25 +803,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetSessions_Sessions_Nodes_SessionFromSessionEntityMapper>(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::Foo.Bar.State.GetSessionsResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uri_Type.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uri_Type.snap index 7de02c63d47..3627525856b 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uri_Type.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uri_Type.snap @@ -570,25 +570,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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, new global::StrawberryShake.Serialization.UrlSerializer("Uri")); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, new global::StrawberryShake.Serialization.UrlSerializer("URI")); 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)))); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uuid_Type.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uuid_Type.snap index f83569d977e..d582aec3b5b 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uuid_Type.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Uuid_Type.snap @@ -570,25 +570,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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, new global::StrawberryShake.Serialization.UUIDSerializer("Uuid")); 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::Foo.Bar.State.GetPersonResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_DataType_Query.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_DataType_Query.snap index 9cc85c23860..72ae72a085f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_DataType_Query.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_DataType_Query.snap @@ -721,25 +721,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetAllFoosResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap index 0810c18ccfd..0f06fb5abce 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap @@ -1129,25 +1129,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFeatById_Feats_Items_FeatFromFeatEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFeatById_Feats_Items_Details_FeatDetailsBlockFromFeatDetailsBlockEntityMapper>(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::Foo.Bar.State.GetFeatByIdResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap index 2e29e61a352..f8c018f8c0f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap @@ -1095,25 +1095,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFeatsPage_Feats_Items_FeatFromFeatEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFeatsPage_Feats_Items_ActionType_ActionTypeFromActionTypeEntityMapper>(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::Foo.Bar.State.GetFeatsPageResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap index d53c262b4e2..c0450f8c354 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap @@ -1730,25 +1730,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.PeopleSearch_People_Items_PersonFromPersonEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.PeopleSearch_People_Items_Department_DepartmentFromDepartmentEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.PeopleSearch_People_Items_Manager_PersonFromPersonEntityMapper>(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::Foo.Bar.State.PeopleSearchResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap index 6c7d874e12d..c810d96a9f4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap @@ -872,25 +872,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchNewsItems_NewsItems_Items_NewsItemFromNewsItemEntityMapper>(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::Foo.Bar.State.SearchNewsItemsResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap index 1e5d6841d45..f34695aa6d4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap @@ -1106,25 +1106,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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, new global::StrawberryShake.Serialization.UUIDSerializer("Guid")); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.EnumWithUnderscorePrefixedValues.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.EnumWithUnderscorePrefixedValues.snap index c10fc1d6abf..69246b46fa9 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.EnumWithUnderscorePrefixedValues.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.EnumWithUnderscorePrefixedValues.snap @@ -455,25 +455,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.GetField1ResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap index dae0739de8b..fb8440b5886 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap @@ -4382,25 +4382,26 @@ namespace Microsoft.Extensions.DependencyInjection 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); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap index 40ad530f9aa..5306feaf49a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap @@ -575,25 +575,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetListingsCountResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap index 72b8ba1e2c1..ede5ed79bf3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap @@ -4150,25 +4150,26 @@ namespace Microsoft.Extensions.DependencyInjection 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, new global::StrawberryShake.Serialization.StringSerializer("uuid")); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap index 1f984fe34e5..80074cc1242 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap @@ -4526,25 +4526,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.IntrospectionQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap index 22a93cda4dd..0b118e1f300 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap @@ -668,25 +668,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetPeopleByPk_People_by_pk_peopleFrompeopleEntityMapper>(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, new global::StrawberryShake.Serialization.StringSerializer("uuid")); 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::Foo.Bar.State.GetPeopleByPkResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.MultiLineDocumentation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.MultiLineDocumentation.snap index 7eedd6def76..c1c3f36e643 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.MultiLineDocumentation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.MultiLineDocumentation.snap @@ -424,25 +424,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.FooResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap index 8b8c459bef0..c22c65ae7db 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap @@ -641,25 +641,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.Nodes_Node_WorkspaceFromWorkspaceEntityMapper>(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::Foo.Bar.State.NodesResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap index ac85b58823b..c3061363b7d 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap @@ -913,25 +913,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.GetAllResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap index f571a685d99..610b62bfee3 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap @@ -3967,25 +3967,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFeatById_Feats_Items_Details_FeatDetailsBlockFromFeatDetailsBlockEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetFeatById_Feats_Items_ActionType_ActionTypeFromActionTypeEntityMapper>(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); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap index 5e83ca003cf..7132e441e59 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap @@ -932,25 +932,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetAllResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap index 73d0e7f8579..5050f66f2e4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap @@ -599,25 +599,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SomeQueryResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap index 73d0e7f8579..5050f66f2e4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap @@ -599,25 +599,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.SomeQueryResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap index 40ad530f9aa..5306feaf49a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap @@ -575,25 +575,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.GetListingsCountResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_Client_With_Internal_Access_Modifier.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_Client_With_Internal_Access_Modifier.snap index 1ce2d39b226..0d5fa700ee4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_Client_With_Internal_Access_Modifier.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_Client_With_Internal_Access_Modifier.snap @@ -868,25 +868,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_HumanFromHumanEntityMapper>(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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap index b6c728adb96..bd1fbcc9bd7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap @@ -947,25 +947,26 @@ namespace Microsoft.Extensions.DependencyInjection var clientFactory = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); - 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::Foo.Bar.State.CreateReviewResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Default_Names.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Default_Names.snap index e177b91b363..d3e74cb910f 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Default_Names.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Default_Names.snap @@ -868,25 +868,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_HumanFromHumanEntityMapper>(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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap index 76b5b287975..a1b642b3917 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap @@ -1438,25 +1438,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_Friends_Nodes_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_Friends_Nodes_HumanFromHumanEntityMapper>(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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap index b6dd5d88b49..3ad3cf962e4 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap @@ -891,25 +891,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_DroidFromDroidEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetHero_Hero_HumanFromHumanEntityMapper>(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::Foo.Bar.State.GetHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap index 7054ced244b..e051018b1b8 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap @@ -801,25 +801,26 @@ namespace Microsoft.Extensions.DependencyInjection return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("FooClient")); }); 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::Foo.Bar.State.CreateReviewMutResultFactory>(services); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap index eb8adf772e7..f36d12f6076 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsTypeNameOnUnions.snap @@ -962,25 +962,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchHero_Search_StarshipFromStarshipEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchHero_Search_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchHero_Search_DroidFromDroidEntityMapper>(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::Foo.Bar.State.SearchHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsUnionList.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsUnionList.snap index 13fcc3c3e94..23d3f8f6184 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsUnionList.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.StarWarsUnionList.snap @@ -959,25 +959,26 @@ namespace Microsoft.Extensions.DependencyInjection global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchHero_Search_StarshipFromStarshipEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchHero_Search_HumanFromHumanEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SearchHero_Search_DroidFromDroidEntityMapper>(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::Foo.Bar.State.SearchHeroResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Subscription_With_Default_Names.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Subscription_With_Default_Names.snap index c5ff88493b3..2a968fcc99e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Subscription_With_Default_Names.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Subscription_With_Default_Names.snap @@ -535,25 +535,26 @@ namespace Microsoft.Extensions.DependencyInjection var sessionPool = global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(parentServices); return new global::StrawberryShake.Transport.WebSockets.WebSocketConnection(async ct => await sessionPool.CreateAsync("FooClient", ct)); }); - 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::Foo.Bar.State.OnReviewSubResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap index 08640deac46..9a583000905 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap @@ -1249,25 +1249,26 @@ namespace Microsoft.Extensions.DependencyInjection }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.GetBars_Bars_BarFromBarEntityMapper>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::Foo.Bar.State.SaveBars_SaveBar_BarFromBarEntityMapper>(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::Foo.Bar.State.GetBarsResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); diff --git a/website/src/docs/hotchocolate/v16/defining-a-schema/scalars.md b/website/src/docs/hotchocolate/v16/defining-a-schema/scalars.md index f12f11fa7a1..332e21348e3 100644 --- a/website/src/docs/hotchocolate/v16/defining-a-schema/scalars.md +++ b/website/src/docs/hotchocolate/v16/defining-a-schema/scalars.md @@ -206,8 +206,8 @@ In addition to the scalars defined by the specification, Hot Chocolate also supp | Type | Description | | --------------- | --------------------------------------------------------------------------------------------------------- | +| `Base64String` | Base64 encoded array of bytes | | `Byte` | Signed 8-bit numeric non‐fractional value greater than or equal to -128 and smaller than or equal to 127. | -| `ByteArray` | Base64 encoded array of bytes | | `Date` | ISO-8601 date | | `Decimal` | .NET Floating Point Type | | `Json` | This type can be anything, string, int, list or object, etc. | @@ -409,7 +409,7 @@ Furthermore, we can also bind scalars to arrays or type structures: ```csharp builder.Services .AddGraphQLServer() - .BindRuntimeType(); + .BindRuntimeType(); ``` Hot Chocolate only exposes the used scalars in the generated schema, keeping it simple and clean. diff --git a/website/src/docs/hotchocolate/v16/migrating/migrate-from-15-to-16.md b/website/src/docs/hotchocolate/v16/migrating/migrate-from-15-to-16.md index 5f68c4b9d78..1922ccb82ae 100644 --- a/website/src/docs/hotchocolate/v16/migrating/migrate-from-15-to-16.md +++ b/website/src/docs/hotchocolate/v16/migrating/migrate-from-15-to-16.md @@ -315,10 +315,18 @@ TODO This is to align the GraphQL type names with the core types (`Int`, etc.), which are signed. +## Byte arrays now mapped to `Base64String` + +C# byte arrays (`byte[]`) are now mapped to the GraphQL `Base64String` type by default, as the `ByteArray` type has been deprecated. + # Deprecations Things that will continue to function this release, but we encourage you to move away from. +## `ByteArray` + +The GraphQL `ByteArray` type has been deprecated. Use the `Base64String` type instead. + # Noteworthy changes ## RunWithGraphQLCommandsAsync returns exit code diff --git a/website/src/docs/strawberryshake/v16/scalars.md b/website/src/docs/strawberryshake/v16/scalars.md index b81aa631e5b..ef497c7dbdc 100644 --- a/website/src/docs/strawberryshake/v16/scalars.md +++ b/website/src/docs/strawberryshake/v16/scalars.md @@ -4,22 +4,23 @@ title: "Scalars" Strawberry Shake supports the following scalars out of the box: -| Type | Description | -| ----------- | ----------------------------------------------------------- | -| `Int` | Signed 32-bit numeric non-fractional value | -| `Float` | Double-precision fractional values as specified by IEEE 754 | -| `String` | UTF-8 character sequences | -| `Boolean` | Boolean type representing true or false | -| `ID` | Unique identifier | -| `Byte` | | -| `ByteArray` | Base64 encoded array of bytes | -| `Short` | Signed 16-bit numeric non-fractional value | -| `Long` | Signed 64-bit numeric non-fractional value | -| `Decimal` | .NET Floating Point Type | -| `Url` | Url | -| `DateTime` | ISO-8601 date time | -| `Date` | ISO-8601 date | -| `Uuid` | GUID | +| Type | Description | +| -------------- | ----------------------------------------------------------- | +| `Base64String` | Base64 encoded array of bytes | +| `Boolean` | Boolean type representing true or false | +| `Byte` | | +| `ByteArray` | Base64 encoded array of bytes (DEPRECATED) | +| `Date` | ISO-8601 date | +| `DateTime` | ISO-8601 date time | +| `Decimal` | .NET Floating Point Type | +| `Float` | Double-precision fractional values as specified by IEEE 754 | +| `ID` | Unique identifier | +| `Int` | Signed 32-bit numeric non-fractional value | +| `Long` | Signed 64-bit numeric non-fractional value | +| `Short` | Signed 16-bit numeric non-fractional value | +| `String` | UTF-8 character sequences | +| `Url` | Url | +| `Uuid` | GUID | # Custom Scalars @@ -139,8 +140,8 @@ _configuration_ serviceCollection.AddSerializer(); ``` -> ⚠️ **Note:** When using a value type (struct) with `@serializationType` or `@runtimeType`, you must set `valueType: true` to ensure correct code generation. -> This is not required for intrinsic primitive value types already supported as built-in scalars by Strawberry Shake (e.g., `int`, `float`, `bool`). +> ⚠️ **Note:** When using a value type (struct) with `@serializationType` or `@runtimeType`, you must set `valueType: true` to ensure correct code generation.
+> This is not required for intrinsic primitive value types already supported as built-in scalars by Strawberry Shake (e.g., `int`, `float`, `bool`).
> Example: `@serializationType(name: "global::System.Numerics.Vector2", valueType: true)` ### Any or JSON