From 7e8c291326d375a21b8fcc67a2a3328839626f13 Mon Sep 17 00:00:00 2001 From: bo006139 Date: Mon, 25 Nov 2024 14:58:11 +0100 Subject: [PATCH 1/2] update identity server demo url --- build/docker-compose-demo-with-ui-mysql.yml | 2 +- build/docker-compose-demo-with-ui-npgsql.yml | 2 +- ...ker-compose-demo-with-ui-sqlserver-with-reference-images.yml | 2 +- build/docker-compose-demo-with-ui-sqlserver.yml | 2 +- src/Esquio.UI.Host/appsettings.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/docker-compose-demo-with-ui-mysql.yml b/build/docker-compose-demo-with-ui-mysql.yml index 9cc7b663..e4ffdd20 100644 --- a/build/docker-compose-demo-with-ui-mysql.yml +++ b/build/docker-compose-demo-with-ui-mysql.yml @@ -33,7 +33,7 @@ services: - Security__OpenId__ClientId=interactive.public - Security__OpenId__Audience=api - Security__OpenId__Scope=api - - Security__OpenId__Authority=https://demo.identityserver.io/ + - Security__OpenId__Authority=https://demo.duendesoftware.com/ - Security__OpenId__ResponseType=code - Security__OpenId__RequireHttpsMetadata=true mysql: diff --git a/build/docker-compose-demo-with-ui-npgsql.yml b/build/docker-compose-demo-with-ui-npgsql.yml index 4f045348..11dd3b4c 100644 --- a/build/docker-compose-demo-with-ui-npgsql.yml +++ b/build/docker-compose-demo-with-ui-npgsql.yml @@ -33,7 +33,7 @@ services: - Security__OpenId__ClientId=interactive.public - Security__OpenId__Audience=api - Security__OpenId__Scope=api - - Security__OpenId__Authority=https://demo.identityserver.io/ + - Security__OpenId__Authority=https://demo.duendesoftware.com/ - Security__OpenId__ResponseType=code - Security__OpenId__RequireHttpsMetadata=true postgres: diff --git a/build/docker-compose-demo-with-ui-sqlserver-with-reference-images.yml b/build/docker-compose-demo-with-ui-sqlserver-with-reference-images.yml index 8830a2b0..be0850db 100644 --- a/build/docker-compose-demo-with-ui-sqlserver-with-reference-images.yml +++ b/build/docker-compose-demo-with-ui-sqlserver-with-reference-images.yml @@ -27,7 +27,7 @@ services: - Security__OpenId__ClientId=interactive.public - Security__OpenId__Audience=api - Security__OpenId__Scope=api - - Security__OpenId__Authority=https://demo.identityserver.io/ + - Security__OpenId__Authority=https://demo.duendesoftware.com/ - Security__OpenId__ResponseType=code - Security__OpenId__RequireHttpsMetadata=true sqlserver: diff --git a/build/docker-compose-demo-with-ui-sqlserver.yml b/build/docker-compose-demo-with-ui-sqlserver.yml index ebc9f709..e2b4b399 100644 --- a/build/docker-compose-demo-with-ui-sqlserver.yml +++ b/build/docker-compose-demo-with-ui-sqlserver.yml @@ -33,7 +33,7 @@ services: - Security__OpenId__ClientId=interactive.public - Security__OpenId__Audience=api - Security__OpenId__Scope=api - - Security__OpenId__Authority=https://demo.identityserver.io/ + - Security__OpenId__Authority=https://demo.duendesoftware.com/ - Security__OpenId__ResponseType=code - Security__OpenId__RequireHttpsMetadata=true sqlserver: diff --git a/src/Esquio.UI.Host/appsettings.json b/src/Esquio.UI.Host/appsettings.json index 9d9a46ff..5e1bbed1 100644 --- a/src/Esquio.UI.Host/appsettings.json +++ b/src/Esquio.UI.Host/appsettings.json @@ -49,7 +49,7 @@ "ClientId": "interactive.public", "Audience": "api", "Scope": "api", - "Authority": "https://demo.identityserver.io/", + "Authority": "https://demo.duendesoftware.com/", "ResponseType": "code" } }, From f82662762bb12c24c12b654495bb030eaf0df62a Mon Sep 17 00:00:00 2001 From: bo006139 Date: Mon, 25 Nov 2024 16:15:34 +0100 Subject: [PATCH 2/2] migrate packages --- .github/workflows/cd.yml | 2 +- .github/workflows/ci_all_branches.yml | 2 +- .github/workflows/ci_master.yml | 2 +- .github/workflows/nightly.yml | 2 +- Directory.Build.targets | 107 ++++++----- Esquio.sln | 2 +- build/dependencies.props | 22 +-- global.json | 2 +- src/Esquio.UI.Api/Esquio.UI.Api.csproj | 8 +- .../Behaviors/LoggerMediatRBehavior.cs | 5 +- tools/Esquio.CliTool/Internal/EsquioClient.cs | 166 ++++++++++-------- 11 files changed, 164 insertions(+), 156 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 05fb229e..7e6712f7 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -36,7 +36,7 @@ jobs: - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 6.0.201 + dotnet-version: 8.0.2 - name: dotnet build run: dotnet build Esquio.sln -c $BUILD_CONFIG - name: dotnet test [UnitTests] diff --git a/.github/workflows/ci_all_branches.yml b/.github/workflows/ci_all_branches.yml index 9230cd60..35a5865f 100644 --- a/.github/workflows/ci_all_branches.yml +++ b/.github/workflows/ci_all_branches.yml @@ -33,7 +33,7 @@ jobs: - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 6.0.201 + dotnet-version: 8.0.2 - name: dotnet build run: dotnet build Esquio.sln -c $BUILD_CONFIG - name: dotnet test [UnitTests] diff --git a/.github/workflows/ci_master.yml b/.github/workflows/ci_master.yml index 4444585d..1dea4920 100644 --- a/.github/workflows/ci_master.yml +++ b/.github/workflows/ci_master.yml @@ -39,7 +39,7 @@ jobs: - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 6.0.201 + dotnet-version: 8.0.2 - name: dotnet build run: dotnet build Esquio.sln -c $BUILD_CONFIG - name: dotnet test [UnitTests] diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1226cbb0..780b8289 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -36,7 +36,7 @@ jobs: - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 6.0.201 + dotnet-version: 8.0.2 - name: dotnet build run: dotnet build Esquio.sln -c $BUILD_CONFIG - name: dotnet test [UnitTests] diff --git a/Directory.Build.targets b/Directory.Build.targets index 616dcd27..f099ce27 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -7,70 +7,67 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + - + - - + + diff --git a/Esquio.sln b/Esquio.sln index 5138e681..6b6e1fe7 100644 --- a/Esquio.sln +++ b/Esquio.sln @@ -77,7 +77,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GettingStarted.AspNetCore.E EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GettingStarted.AspNetCore.Mvc.ApplicationInsights", "samples\GettingStarted.AspNetCore.Mvc.ApplicationInsights\GettingStarted.AspNetCore.Mvc.ApplicationInsights.csproj", "{66B38F31-F08A-4A66-BB5E-417594478003}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GettingStarted.AspNetCore.MinimalApi", "samples\GettingStarted.AspNetCore.MinimalApi\GettingStarted.AspNetCore.MinimalApi.csproj", "{9F4A1F42-296E-4757-95EF-93D3795274A3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GettingStarted.AspNetCore.MinimalApi", "samples\GettingStarted.AspNetCore.MinimalApi\GettingStarted.AspNetCore.MinimalApi.csproj", "{9F4A1F42-296E-4757-95EF-93D3795274A3}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/build/dependencies.props b/build/dependencies.props index 8f149048..154e501d 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,6 +1,6 @@ - net6.0 + net8.0 netstandard21 17.0.0 preview @@ -8,15 +8,15 @@ - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) - 6.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) + 8.0.0$(VersionSuffix) \ No newline at end of file diff --git a/global.json b/global.json index a089e0b7..a54c29e4 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "projects": [ "src", "tests", "samples"], "sdk": { - "version": "6.0.201" + "version": "8.0.202" } } \ No newline at end of file diff --git a/src/Esquio.UI.Api/Esquio.UI.Api.csproj b/src/Esquio.UI.Api/Esquio.UI.Api.csproj index b7eb3124..983b96f0 100644 --- a/src/Esquio.UI.Api/Esquio.UI.Api.csproj +++ b/src/Esquio.UI.Api/Esquio.UI.Api.csproj @@ -45,9 +45,9 @@ - - - - + diff --git a/src/Esquio.UI.Api/Infrastructure/Behaviors/LoggerMediatRBehavior.cs b/src/Esquio.UI.Api/Infrastructure/Behaviors/LoggerMediatRBehavior.cs index 23f9befa..a28e8358 100644 --- a/src/Esquio.UI.Api/Infrastructure/Behaviors/LoggerMediatRBehavior.cs +++ b/src/Esquio.UI.Api/Infrastructure/Behaviors/LoggerMediatRBehavior.cs @@ -16,9 +16,10 @@ public LoggerMediatRBehavior(ILoggerFactory loggerFactory) { _loggerFactory = loggerFactory ?? throw new ArgumentNullException(nameof(loggerFactory)); } - public async Task Handle(TRequest request, CancellationToken cancellationToken, RequestHandlerDelegate next) + + public async Task Handle(TRequest request, RequestHandlerDelegate next, CancellationToken cancellationToken) { - var logger = _loggerFactory.CreateLogger(); + var logger = _loggerFactory.CreateLogger(); Log.ExecutingCommand(logger, typeof(TRequest).Name); diff --git a/tools/Esquio.CliTool/Internal/EsquioClient.cs b/tools/Esquio.CliTool/Internal/EsquioClient.cs index 2601f3a5..840f0a0b 100644 --- a/tools/Esquio.CliTool/Internal/EsquioClient.cs +++ b/tools/Esquio.CliTool/Internal/EsquioClient.cs @@ -1,22 +1,25 @@ //---------------------- // -// Generated using the NSwag toolchain v13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org) +// Generated using the NSwag toolchain v13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org) // //---------------------- #pragma warning disable 108 // Disable "CS0108 '{derivedDto}.ToJson()' hides inherited member '{dtoBase}.ToJson()'. Use the new keyword if hiding was intended." #pragma warning disable 114 // Disable "CS0114 '{derivedDto}.RaisePropertyChanged(String)' hides inherited member 'dtoBase.RaisePropertyChanged(String)'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword." #pragma warning disable 472 // Disable "CS0472 The result of the expression is always 'false' since a value of type 'Int32' is never equal to 'null' of type 'Int32?' +#pragma warning disable 612 // Disable "CS0612 '...' is obsolete" #pragma warning disable 1573 // Disable "CS1573 Parameter '...' has no matching param tag in the XML comment for ... #pragma warning disable 1591 // Disable "CS1591 Missing XML comment for publicly visible type or member ..." #pragma warning disable 8073 // Disable "CS8073 The result of the expression is always 'false' since a value of type 'T' is never equal to 'null' of type 'T?'" #pragma warning disable 3016 // Disable "CS3016 Arrays as attribute arguments is not CLS-compliant" +#pragma warning disable 8603 // Disable "CS8603 Possible null reference return" +#pragma warning disable 8604 // Disable "CS8604 Possible null reference argument for parameter" namespace Esquio.CliTool.Internal { using System = global::System; - [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class EsquioClient { private string _baseUrl = ""; @@ -27,7 +30,7 @@ public EsquioClient(string baseUrl, System.Net.Http.HttpClient httpClient) { BaseUrl = baseUrl; _httpClient = httpClient; - _settings = new System.Lazy(CreateSerializerSettings); + _settings = new System.Lazy(CreateSerializerSettings, true); } private Newtonsoft.Json.JsonSerializerSettings CreateSerializerSettings() @@ -252,7 +255,8 @@ public virtual async System.Threading.Tasks.Task ApiKeys_AddAsync(AddApiKeyReque { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -517,7 +521,8 @@ public virtual async System.Threading.Tasks.Task Features_AddAsync(string produc { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(addfeatureRequest, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(addfeatureRequest, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -717,7 +722,8 @@ public virtual async System.Threading.Tasks.Task Features_UpdateAsync(string pro { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(updateFeatureRequest, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(updateFeatureRequest, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("PUT"); @@ -1586,7 +1592,8 @@ public virtual async System.Threading.Tasks.Task Permissions_AddAsync(AddPermiss { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -1665,7 +1672,8 @@ public virtual async System.Threading.Tasks.Task Permissions_UpdateAsync(UpdateP { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("PUT"); @@ -2007,7 +2015,8 @@ public virtual async System.Threading.Tasks.Task Products_AddAsync(AddProductReq { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -2200,7 +2209,8 @@ public virtual async System.Threading.Tasks.Task Products_UpdateAsync(string pro { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("PUT"); @@ -2481,7 +2491,8 @@ public virtual async System.Threading.Tasks.Task Products_ImportAsync(ImportProd { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -2662,7 +2673,8 @@ public virtual async System.Threading.Tasks.Task Products_AddDeploymentAsync(str { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -3341,7 +3353,8 @@ public virtual async System.Threading.Tasks.Task Tags_TagAsync(string productNam { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(request, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -3812,7 +3825,8 @@ public virtual async System.Threading.Tasks.Task Toggles_AddParameterAsync(AddPa { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(parameterToggleRequest, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(parameterToggleRequest, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -3903,7 +3917,8 @@ public virtual async System.Threading.Tasks.Task Toggles_AddAsync(AddToggleReque { using (var request_ = new System.Net.Http.HttpRequestMessage()) { - var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(postToggleRequest, _settings.Value)); + var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(postToggleRequest, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("POST"); @@ -4078,7 +4093,7 @@ private string ConvertToString(object value, System.Globalization.CultureInfo cu } } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ListAuditRequest { [Newtonsoft.Json.JsonProperty("pageIndex", Required = Newtonsoft.Json.Required.Always)] @@ -4089,7 +4104,7 @@ public partial class ListAuditRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ProblemDetails { [Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4111,18 +4126,18 @@ public partial class ProblemDetails [System.ComponentModel.DataAnnotations.Required] public System.Collections.Generic.IDictionary Extensions { get; set; } = new System.Collections.Generic.Dictionary(); - private System.Collections.Generic.IDictionary _additionalProperties = new System.Collections.Generic.Dictionary(); + private System.Collections.Generic.IDictionary _additionalProperties; [Newtonsoft.Json.JsonExtensionData] public System.Collections.Generic.IDictionary AdditionalProperties { - get { return _additionalProperties; } + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } set { _additionalProperties = value; } } } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PaginatedResultOfListApiKeyResponseDetail { [Newtonsoft.Json.JsonProperty("total", Required = Newtonsoft.Json.Required.Always)] @@ -4139,7 +4154,7 @@ public partial class PaginatedResultOfListApiKeyResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ListApiKeyResponseDetail { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4151,7 +4166,7 @@ public partial class ListApiKeyResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsApiKeyResponse { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4166,25 +4181,16 @@ public partial class DetailsApiKeyResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ValidationProblemDetails : HttpValidationProblemDetails { [Newtonsoft.Json.JsonProperty("errors", Required = Newtonsoft.Json.Required.Always)] [System.ComponentModel.DataAnnotations.Required] public System.Collections.Generic.IDictionary> Errors { get; set; } = new System.Collections.Generic.Dictionary>(); - private System.Collections.Generic.IDictionary _additionalProperties = new System.Collections.Generic.Dictionary(); - - [Newtonsoft.Json.JsonExtensionData] - public System.Collections.Generic.IDictionary AdditionalProperties - { - get { return _additionalProperties; } - set { _additionalProperties = value; } - } - } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class HttpValidationProblemDetails : ProblemDetails { [Newtonsoft.Json.JsonProperty("errors", Required = Newtonsoft.Json.Required.Always)] @@ -4193,7 +4199,7 @@ public partial class HttpValidationProblemDetails : ProblemDetails } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddApiKeyRequest { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4207,7 +4213,7 @@ public partial class AddApiKeyRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddFeatureRequest { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4221,7 +4227,7 @@ public partial class AddFeatureRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class UpdateFeatureRequest { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4232,7 +4238,7 @@ public partial class UpdateFeatureRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsFeatureResponse { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4246,7 +4252,7 @@ public partial class DetailsFeatureResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ToggleDetail { [Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4260,7 +4266,7 @@ public partial class ToggleDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ParameterDetail { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4271,7 +4277,7 @@ public partial class ParameterDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class StateFeatureResponse { [Newtonsoft.Json.JsonProperty("states", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4279,7 +4285,7 @@ public partial class StateFeatureResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class StateFeatureResponseDetail { [Newtonsoft.Json.JsonProperty("deploymentName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4293,7 +4299,7 @@ public partial class StateFeatureResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PaginatedResultOfListFeatureResponseDetail { [Newtonsoft.Json.JsonProperty("total", Required = Newtonsoft.Json.Required.Always)] @@ -4310,7 +4316,7 @@ public partial class PaginatedResultOfListFeatureResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ListFeatureResponseDetail { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4324,7 +4330,7 @@ public partial class ListFeatureResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class MyResponse { [Newtonsoft.Json.JsonProperty("isAuthorized", Required = Newtonsoft.Json.Required.Always)] @@ -4335,7 +4341,7 @@ public partial class MyResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PaginatedResultOfListUsersResponseDetail { [Newtonsoft.Json.JsonProperty("total", Required = Newtonsoft.Json.Required.Always)] @@ -4352,7 +4358,7 @@ public partial class PaginatedResultOfListUsersResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ListUsersResponseDetail { [Newtonsoft.Json.JsonProperty("subjectId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4363,7 +4369,7 @@ public partial class ListUsersResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsPermissionResponse { [Newtonsoft.Json.JsonProperty("subjectId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4374,7 +4380,7 @@ public partial class DetailsPermissionResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddPermissionRequest { [Newtonsoft.Json.JsonProperty("subjectId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4385,7 +4391,7 @@ public partial class AddPermissionRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class UpdatePermissionRequest { [Newtonsoft.Json.JsonProperty("subjectId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4396,7 +4402,7 @@ public partial class UpdatePermissionRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PaginatedResultOfListProductResponseDetail { [Newtonsoft.Json.JsonProperty("total", Required = Newtonsoft.Json.Required.Always)] @@ -4413,7 +4419,7 @@ public partial class PaginatedResultOfListProductResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ListProductResponseDetail { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4424,7 +4430,7 @@ public partial class ListProductResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsProductResponse { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4438,7 +4444,7 @@ public partial class DetailsProductResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DeploymentResponseDetail { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4449,7 +4455,7 @@ public partial class DeploymentResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ExportProductResponse { [Newtonsoft.Json.JsonProperty("content", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4457,7 +4463,7 @@ public partial class ExportProductResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ImportProductRequest { [Newtonsoft.Json.JsonProperty("content", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4465,7 +4471,7 @@ public partial class ImportProductRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddProductRequest { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4479,7 +4485,7 @@ public partial class AddProductRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class UpdateProductRequest { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4490,7 +4496,7 @@ public partial class UpdateProductRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddDeploymentRequest { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4498,7 +4504,7 @@ public partial class AddDeploymentRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsConfigurationResponse { [Newtonsoft.Json.JsonProperty("featureName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4512,7 +4518,7 @@ public partial class DetailsConfigurationResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsConfigurationRequest { [Newtonsoft.Json.JsonProperty("productName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4523,7 +4529,7 @@ public partial class DetailsConfigurationRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class TagResponseDetail { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4534,7 +4540,7 @@ public partial class TagResponseDetail } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddTagRequest { [Newtonsoft.Json.JsonProperty("tag", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4545,7 +4551,7 @@ public partial class AddTagRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DetailsToggleResponse { [Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4565,7 +4571,7 @@ public partial class DetailsToggleResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ParameterDetail2 { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4579,7 +4585,7 @@ public partial class ParameterDetail2 } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class RevealToggleResponse { [Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4590,7 +4596,7 @@ public partial class RevealToggleResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class RevealToggleParameterResponse { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4604,7 +4610,7 @@ public partial class RevealToggleParameterResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class KnownTypesToggleResponse { [Newtonsoft.Json.JsonProperty("scannedAssemblies", Required = Newtonsoft.Json.Required.Always)] @@ -4615,7 +4621,7 @@ public partial class KnownTypesToggleResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class KnownTypesToggleDetailResponse { [Newtonsoft.Json.JsonProperty("assembly", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4632,7 +4638,7 @@ public partial class KnownTypesToggleDetailResponse } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddParameterToggleRequest { [Newtonsoft.Json.JsonProperty("productName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4655,7 +4661,7 @@ public partial class AddParameterToggleRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddToggleRequest { [Newtonsoft.Json.JsonProperty("productName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4675,7 +4681,7 @@ public partial class AddToggleRequest } - [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class AddToggleRequestDetailParameter { [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] @@ -4691,7 +4697,7 @@ public partial class AddToggleRequestDetailParameter - [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ApiException : System.Exception { public int StatusCode { get; private set; } @@ -4714,7 +4720,7 @@ public override string ToString() } } - [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.15.5.0 (NJsonSchema v10.6.6.0 (Newtonsoft.Json v13.0.0.0))")] + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ApiException : ApiException { public TResult Result { get; private set; } @@ -4728,9 +4734,13 @@ public ApiException(string message, int statusCode, string response, System.Coll } -#pragma warning restore 1591 -#pragma warning restore 1573 -#pragma warning restore 472 -#pragma warning restore 114 #pragma warning restore 108 -#pragma warning restore 3016 \ No newline at end of file +#pragma warning restore 114 +#pragma warning restore 472 +#pragma warning restore 612 +#pragma warning restore 1573 +#pragma warning restore 1591 +#pragma warning restore 8073 +#pragma warning restore 3016 +#pragma warning restore 8603 +#pragma warning restore 8604 \ No newline at end of file