From ffaf9ec866fd22d6d536b865e3b9107dd617b016 Mon Sep 17 00:00:00 2001 From: devexperience Date: Thu, 14 Nov 2024 23:06:17 +0000 Subject: [PATCH] Generated version 0.40.0 This commit was automatically created by a GitHub Action to generate version 0.40.0 of this library. --- MX.Platform.CSharp.sln | 10 +++++----- api/openapi.yaml | 6 ++++++ docs/MxPlatformApi.md | 1 + openapi/config.yml | 2 +- src/MX.Platform.CSharp/Client/Configuration.cs | 6 +++--- src/MX.Platform.CSharp/MX.Platform.CSharp.csproj | 2 +- 6 files changed, 17 insertions(+), 10 deletions(-) diff --git a/MX.Platform.CSharp.sln b/MX.Platform.CSharp.sln index 1eb50f0..5c3a3a1 100644 --- a/MX.Platform.CSharp.sln +++ b/MX.Platform.CSharp.sln @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 VisualStudioVersion = 12.0.0.0 MinimumVisualStudioVersion = 10.0.0.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{B47B6A14-CD00-4934-A64F-73C3E3DC30DE}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{05B36DBE-E368-438F-8FB5-A1D3BBF33F9B}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp.Test", "src\MX.Platform.CSharp.Test\MX.Platform.CSharp.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}" EndProject @@ -12,10 +12,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B47B6A14-CD00-4934-A64F-73C3E3DC30DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B47B6A14-CD00-4934-A64F-73C3E3DC30DE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B47B6A14-CD00-4934-A64F-73C3E3DC30DE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B47B6A14-CD00-4934-A64F-73C3E3DC30DE}.Release|Any CPU.Build.0 = Release|Any CPU + {05B36DBE-E368-438F-8FB5-A1D3BBF33F9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {05B36DBE-E368-438F-8FB5-A1D3BBF33F9B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {05B36DBE-E368-438F-8FB5-A1D3BBF33F9B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {05B36DBE-E368-438F-8FB5-A1D3BBF33F9B}.Release|Any CPU.Build.0 = Release|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/api/openapi.yaml b/api/openapi.yaml index 09fa1dc..b6f16a8 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -2914,6 +2914,12 @@ paths: metadata) and required parameters (credentials and institution_code) required: true responses: + "200": + content: + application/vnd.mx.api.v1+json: + schema: + $ref: '#/components/schemas/MemberResponseBody' + description: OK "202": content: application/vnd.mx.api.v1+json: diff --git a/docs/MxPlatformApi.md b/docs/MxPlatformApi.md index 1274c7d..277111a 100644 --- a/docs/MxPlatformApi.md +++ b/docs/MxPlatformApi.md @@ -890,6 +890,7 @@ catch (ApiException e) ### HTTP response details | Status code | Description | Response headers | |-------------|-------------|------------------| +| **200** | OK | - | | **202** | Accepted | - | [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) diff --git a/openapi/config.yml b/openapi/config.yml index e0f7d5c..a781812 100644 --- a/openapi/config.yml +++ b/openapi/config.yml @@ -1,3 +1,3 @@ --- packageName: MX.Platform.CSharp -packageVersion: 0.39.0 +packageVersion: 0.40.0 diff --git a/src/MX.Platform.CSharp/Client/Configuration.cs b/src/MX.Platform.CSharp/Client/Configuration.cs index c155295..7d8f8f7 100644 --- a/src/MX.Platform.CSharp/Client/Configuration.cs +++ b/src/MX.Platform.CSharp/Client/Configuration.cs @@ -33,7 +33,7 @@ public class Configuration : IReadableConfiguration /// Version of the package. /// /// Version of the package. - public const string Version = "0.39.0"; + public const string Version = "0.40.0"; /// /// Identifier for ISO 8601 DateTime Format @@ -117,7 +117,7 @@ public class Configuration : IReadableConfiguration public Configuration() { Proxy = null; - UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.39.0/csharp"); + UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.40.0/csharp"); BasePath = "https://api.mx.com"; DefaultHeaders = new ConcurrentDictionary(); ApiKey = new ConcurrentDictionary(); @@ -546,7 +546,7 @@ public static string ToDebugReport() report += " OS: " + System.Environment.OSVersion + "\n"; report += " .NET Framework Version: " + System.Environment.Version + "\n"; report += " Version of the API: 0.1.0\n"; - report += " SDK Package Version: 0.39.0\n"; + report += " SDK Package Version: 0.40.0\n"; return report; } diff --git a/src/MX.Platform.CSharp/MX.Platform.CSharp.csproj b/src/MX.Platform.CSharp/MX.Platform.CSharp.csproj index 0adff16..d93547f 100644 --- a/src/MX.Platform.CSharp/MX.Platform.CSharp.csproj +++ b/src/MX.Platform.CSharp/MX.Platform.CSharp.csproj @@ -12,7 +12,7 @@ A library generated from a OpenAPI doc No Copyright MX.Platform.CSharp - 0.39.0 + 0.40.0 bin\$(Configuration)\$(TargetFramework)\MX.Platform.CSharp.xml https://github.com/GIT_USER_ID/GIT_REPO_ID.git git