Teable logo

Teable

Collaborate with your team in real-time, and scale to millions of rows

Alternative to: airtable


About Versions (46)

v1.4.0

2024-09-02

Highlight 🎉

Undo and Redo

All operations in table can be undone and redone

https://github.com/user-attachments/assets/28051dd9-8060-4c46-bd4f-bd268f07f1a4

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 ❤️

  • Delete record in edit header by @spiritanand
  • French translation by @simon-moulin
  • Japanese translation by @tkymmm

What’s Changed

New Contributors

Full Changelog: https://github.com/teableio/teable/compare/v1.3.2…v1.4.0