scripts
-
yarn generate
: generate openapi typescript api calls using typescript-fetch -
yarn build
: generate javascript files and typescript definitions into lib -
yarn publish
: will publish package to npm
import AirByteClient from 'intuned-airbyte-client'
const client = new AirByteClient({
basePath: `${basePath}/api`,
username: `${username}`,
password: `${password}`,
})
client.healthApi().getHealthCheck().then(console.log)