Skip to content

v0.21.0

Choose a tag to compare

@github-actions github-actions released this 24 Jul 20:47
· 486 commits to master since this release

Minor Changes

  • 71d9a3d: Make Http.client data-first.

    Instead of

    const client = pipe(api, Http.client(url, options));

    use

    const client = Http.client(api, url, options);
  • e0fa6e6: Remove effect-log and logging functionality.

  • 7ee7ec3: Custom response. Remove possibility to return Response.

Patch Changes

  • db40417: Fix OpenApi path string format.
  • 368ae52: Make sure path string matches the param schema.