budibase/packages/client/src/api/index.js

10 lines
268 B
JavaScript
Raw Normal View History

import { API } from "./api.js"
import { patchAPI } from "./patches.js"
// Certain endpoints which return rows need patched so that they transform
// and enrich the row docs, so that they can be correctly handled by the
// client library
patchAPI(API)
export { API }