We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a57cd commit ce1f8ceCopy full SHA for ce1f8ce
Contentstack.Management.Core/ContentstackClient.cs
@@ -35,7 +35,7 @@ public class ContentstackClient : IContentstackClient
35
private HttpClient _httpClient;
36
private bool _disposed = false;
37
38
- private string Version => "0.1.4";
+ private string Version => "0.1.5";
39
private string xUserAgent => $"contentstack-management-dotnet/{Version}";
40
#endregion
41
@@ -163,6 +163,8 @@ protected void Initialize()
163
{
164
SerializerSettings.Converters.Add((JsonConverter)Activator.CreateInstance(t));
165
}
166
+ SerializerSettings.Converters.Add(new NodeJsonConverter());
167
+ SerializerSettings.Converters.Add(new TextNodeJsonConverter());
168
169
170
protected void BuildPipeline()
0 commit comments