Skip to content

Releases: neothXT/Snowdrop

Release 0.3.0

26 Apr 23:37
94d31dc
Compare
Choose a tag to compare

Added Mockable macro to auto-mock services and rebuilt interceptors' mechanism

Release 0.2.0

21 Apr 17:50
Compare
Choose a tag to compare
  • Snowdrop now is able to automatically recognize mime types and create boundaries for following types:
    • jpeg
    • png
    • gif
    • tiff
    • pdf
    • vnd
    • plain
    • octet-stream
  • Added Service protocol
  • Added conformance ensurance for endpoint's protocol by automatically creating 2 versions of each endpoint, for example:
    • func getPost(for id: Int = 2) async throws -> Post { ... }
    • func getPost(for id: Int = 2, _queryItems: [QueryItem]) async throws -> Post { ... }