It seems that after pull request #53 JSONCodable got functionality for encoding/decoding nested types (9782c0f). However the problem we are having is that our API JSON responses have some keys with . in them. This makes it impossible to encode (and probably parse) the JSONs using the library.
For example this JSON is not parseable correctly with the lib:
Is there a way to fallback to a more low-level approach avoiding the key.components(separatedBy: ".") part in each of func encode(_ value: key:) overload?
It seems that after pull request #53 JSONCodable got functionality for encoding/decoding nested types (9782c0f). However the problem we are having is that our API JSON responses have some keys with
.in them. This makes it impossible to encode (and probably parse) the JSONs using the library.For example this JSON is not parseable correctly with the lib:
Is there a way to fallback to a more low-level approach avoiding the
key.components(separatedBy: ".")part in each offunc encode(_ value: key:)overload?