Skip to content
This repository was archived by the owner on Mar 17, 2023. It is now read-only.

Deprecations

Ivan Gabriele edited this page Feb 6, 2020 · 1 revision

Deprecations

All deprecations listed here will be removed in the next major version release.

baseUri option

  • From: v1.1.0
  • Planned: v2.0.0

Replace:

const postgrestClient = postgrester.create({
  baseUri: "https://api.example.com"
});

by:

const postgrestClient = postgrester.create({
  axiosConfig: { baseURL: "https://api.example.com" }
});
Clone this wiki locally