twilio v0.2.0.0 Release Notes
Release Date: 2018-01-30 // over 4 years ago-
0.2.0.0 (January 29, 2018)
๐ This release mainly refactors the way SIDs are handled internally. Previously,
โ adding a SID required copying a bunch of boilerplate. Now we use Template
Haskell to generate that boilerplate automatically, and adding a SID is as easy
as callingcreateSID
. Each SID is a newtype wrapper around a base data type,
SID
. So, for example,AccountSID
now wraps aSID A C
.๐ Bug Fixes
- ๐
MessageSID
only handled "SM"-prefixed SIDs; however, there are "MM"-prefixed
Message SIDs, too. So, now we have two data types,SMSMessageSID
and
๐MMSMessageSID
corresponding to the "SM"- and "MM"-prefixed variants, and
MessageSID
becomes a newtype wrapper around
Either SMSMessageSID MMSMessageSID
.
๐ Features
- โ Add support for deleting recordings.
- โ Add Messaging Copilot support via a new
function,postCopilot
.
- ๐