Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Price which is set to 0 for CartItem / AdditionalCost are now sent correctly and not ignored #19

Merged
merged 3 commits into from
Nov 8, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Bump version to 4.0.2
altJake committed Nov 8, 2021
commit dc0b64aafd7aebba1acf34222b5fb5f938572cb8
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ is `https://mycompany.talon.one/v2/customer_sessions/{Id}`
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- SDK version: 4.0.1
- SDK version: 4.0.2
- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen

<a name="frameworks-supported"></a>
6 changes: 3 additions & 3 deletions src/TalonOne/Client/Configuration.cs
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "4.0.1";
public const string Version = "4.0.2";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
@@ -96,7 +96,7 @@ public class Configuration : IReadableConfiguration
[System.Diagnostics.CodeAnalysis.SuppressMessage("ReSharper", "VirtualMemberCallInConstructor")]
public Configuration()
{
UserAgent = "OpenAPI-Generator/4.0.1/csharp";
UserAgent = "OpenAPI-Generator/4.0.2/csharp";
BasePath = "http://localhost";
DefaultHeaders = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
@@ -351,7 +351,7 @@ public static String ToDebugReport()
String report = "C# SDK (TalonOne) Debug Report:\n";
report += " OS: " + System.Runtime.InteropServices.RuntimeInformation.OSDescription + "\n";
report += " Version of the API: 1.0.0\n";
report += " SDK Package Version: 4.0.1\n";
report += " SDK Package Version: 4.0.2\n";

return report;
}
4 changes: 2 additions & 2 deletions src/TalonOne/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.0.1")]
[assembly: AssemblyFileVersion("4.0.1")]
[assembly: AssemblyVersion("4.0.2")]
[assembly: AssemblyFileVersion("4.0.2")]