-
Notifications
You must be signed in to change notification settings - Fork 521
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/5.0.0-rc' into 5.0.0-rc
# Conflicts: # UPGRADE.md
- Loading branch information
Showing
19 changed files
with
574 additions
and
1,219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ it can be. | |
|
||
If you have questions about how to use `twilio-node`, please see our | ||
[docs](./README.md), and if you don't find the answer there, please contact | ||
[[email protected]](mailto:help@twilio.com) with any issues you have. | ||
[Twilio Support](https://www.twilio.com/help/contact) with any issues you have. | ||
|
||
## <a name="issue"></a> Found an Issue? | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "twilio", | ||
"description": "A Twilio helper library", | ||
"version": "4.19.1", | ||
"version": "5.0.0-rc.0", | ||
"author": "API Team <[email protected]>", | ||
"contributors": [ | ||
{ | ||
|
@@ -20,7 +20,7 @@ | |
"url": "https://github.com/twilio/twilio-node.git" | ||
}, | ||
"dependencies": { | ||
"axios": "^0.26.1", | ||
"axios": "^1.6.0", | ||
"dayjs": "^1.11.9", | ||
"https-proxy-agent": "^5.0.0", | ||
"jsonwebtoken": "^9.0.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import PreviewMessagingBase from "./PreviewMessagingBase"; | ||
import { MessageListInstance } from "./previewMessaging/v1/message"; | ||
|
||
class PreviewMessaging extends PreviewMessagingBase { | ||
/** | ||
* @deprecated - Use v1.messages; instead | ||
*/ | ||
get messages(): MessageListInstance { | ||
console.warn("messages is deprecated. Use v1.messages; instead."); | ||
return this.v1.messages; | ||
} | ||
} | ||
export = PreviewMessaging; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.