CodableFirebase icon indicating copy to clipboard operation
CodableFirebase copied to clipboard

Use Codable with Firebase

Results 45 CodableFirebase issues
Sort by recently updated
recently updated
newest added

Encoder.swift ``` internal extension DecodingError { internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError { ... ``` Xcode 11.4 shows warning that the internal isn't required....

Hello, firstly I wanna say thanks for this repo :) I am working with firestore nowadays and I am going to freak out because of models. Finally, I found this...

First of all, thank you very much how this super useful library, I've been using it a lot and I really like it 👍 I'm not sure this is an...

I noticed that the README portion that spells out the extensions that need to be added needed a `import CodableFirebase` in order to compile

I have a model where one of the properties is a dictionary like this: ``` struct MyModel: Codable { let userIds: [String: Bool] } ``` This works fine, it decodes...

Now that Firestore warns us to/ forces the usage of Timestamps over Dates I'm looking for a way to workaround this. Background: I'm using Models on iOS and watchOS as...

Bumps [excon](https://github.com/excon/excon) from 0.62.0 to 0.71.0. Changelog *Sourced from [excon's changelog](https://github.com/excon/excon/blob/master/changelog.txt).* > 0.71.0 2019-12-12 > ================= > > fix for leftover data with interrupted persistent connections > > 0.70.0 2019-12-02...

dependencies

keyNotFound No value associated with key CodingKeys This throws on the accessCodes variable. I have a custom Codable object that encodes just fine, but I believe that Codable does not...

Hi Alickbass, would appreciate if you could let me know if there are going to more releases. I keep getting swift 5 version warning.

I'd like to keep the model clean, without any dependency from firestore, which limits us to use Date, and not Timestamp. This PR adds an ability of it. I also...