Skip to content

Releases: draftbit/twitter-lite

0.14.0

Choose a tag to compare

@peterpme peterpme released this 11 Jun 15:13

Fixes bearer token #103

0.13.0

Choose a tag to compare

@peterpme peterpme released this 19 May 19:17

Fixes:

  • Updates booleans to strings (#102)

0.12.0

Choose a tag to compare

@peterpme peterpme released this 16 May 19:20

Added

  • add collections/entries/curate endpoint (#98)
  • improve error handling in thrown errors by adding headers (#95)

Fixed

  • fixed types for Stream##destroy() (#96)

0.11.0

Choose a tag to compare

@dylanirlbeck dylanirlbeck released this 29 Apr 01:22

Added

  • Support for media/metadata/create endpoint (with an example in twitter.test.js)

Fixed

  • Fixed an issue with the TypeScript typings causing a "not a constructor" error
  • Fixed error with building on Windows machines
  • Bug caused by calling the .raw() function on response headers
  • Type errors during OAuth flow

0.10 Pre-Release

0.10 Pre-Release Pre-release
Pre-release

Choose a tag to compare

@dylanirlbeck dylanirlbeck released this 27 Apr 15:13

Added

  • Typescript support thanks to @fdebijl !
  • version is now included in the options object (with a default of 1.1). This will allow you to specify the desired version of the Twitter API you're using
  • Support for PUT methods

Changed

  • Improved documentation (including an example snippet for tweeting a thread)

Send POST parameters in the body

Choose a tag to compare

@dandv dandv released this 14 Dec 05:48

This release adds support for sending POST parameters in the body of the request, which allows for longer parameter lists than possible with GET. It also fixes an encoding issue, so it's now possible to post statuses containing ! or any other character.

Reject on errors

Choose a tag to compare

@dandv dandv released this 26 Jul 07:31

.get() and .post() now reject on error, by popular demand.