github teableio/teable v1.4.0

latest release: v1.4.1
17 days ago

Highlight 🎉

Undo and Redo

All operations in table can be undone and redone

undo.redo.en.mp4

Base collaborator

You can now invite collaborators into the base without entering the space

image

Npm package @teable/openapi

You can now use @teable/openapi to make API calls and get good type hints. Documentation is still being prepared you can find all APIs in the code base https://github.com/teableio/teable/tree/develop/packages/openapi/src,

npm install @teable/openapi --save
import { configApi, createRecords } from '@teable/openapi';

configApi({
  endpoint: 'https://app.teable.io',
  token: '__token__',
});

const response = await createRecords('__tableId__', {
  records: [
    {
      fields: {
        Name: 'John Doe',
        Age: 30
      }
    }
  ]
});

console.log(response.data);

Contributions from the community ❤️

What's Changed

New Contributors

Full Changelog: v1.3.2...v1.4.0

Don't miss a new teable release

NewReleases is sending notifications on new releases.