Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Releases: GV14982/async-airtable

v2.1.0

04 Jan 19:56
Compare
Choose a tag to compare

Changelog

  • A new query builder option for select statements #45
  • Added the typecast option for handling adding new options to selects and multi-selects #47

v1.0.0

01 Nov 21:20
9976ac3
Compare
Choose a tag to compare

Changelog

  • Breaking changes

    • Slight modification to the AsyncAirtable#updateRecord and AsyncAirtable#bulkUpdate record parameter.
      • Old shape:
        {
          id: 'AIRTABLE RECORD ID'
          ...fields
        }
        
      • New shape:
        {
          id: 'AIRTABLE RECORD ID'
          fields: {
            ...fields
          }
        }
        
  • New features

    • Fully typed with declaration files.
    • upsertRecord method for you SQL aficionados.
    • Added an automatic retry for rate limited requests.
      • This was just a change we put in to make using the library slightly easier.

We have more features on the way, so keep an eye out for that 🎉

Please feel free to reach out with any questions, and I look forward to building more awesome features 😊

v0.2.0

10 Oct 06:44
1faf1b6
Compare
Choose a tag to compare

Changelog

Breaking changes:

  • Changed a few method names (@mamacas in #15):
    • create -> createRecord
    • update -> updateRecord
    • delete -> deleteRecord

New features

  • Added the option for destructive updates by passing an optional boolean as the third argument to the updateRecord method (@seanmetzgar in #13).