MyGit

v1.4.0

teableio/teable

版本发布时间: 2024-09-02 15:35:01

teableio/teable最新发布版本:v1.5.0(2024-10-25 14:07:27)

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

What's Changed

New Contributors

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

相关地址:原始地址 下载(tar) 下载(zip)

查看:2024-09-02发行的版本