Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: twilio/twilio-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5948fc1f069a8f1517d4fb88096699d14bcc59c6
Choose a base ref
...
head repository: twilio/twilio-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e297bb9e31935cb65f8b7d9f724ffefd386aa888
Choose a head ref
  • 3 commits
  • 11 files changed
  • 2 contributors

Commits on Jan 30, 2023

  1. fix: update exports for backwards-compatibility (#907)

    childish-sambino authored Jan 30, 2023
    Copy the full SHA
    7203b67 View commit details
  2. Copy the full SHA
    6694091 View commit details
  3. Release 4.1.1

    twilio-dx committed Jan 30, 2023
    Copy the full SHA
    e297bb9 View commit details
Showing with 356 additions and 328 deletions.
  1. +6 −0 CHANGES.md
  2. +1 −1 index.d.ts
  3. +1 −1 index.js
  4. +1 −1 package.json
  5. +223 −213 src/base/BaseTwilio.ts
  6. +1 −1 src/base/Domain.ts
  7. +113 −106 src/base/RequestClient.ts
  8. +7 −2 src/rest/Twilio.ts
  9. +1 −1 src/twiml/FaxResponse.ts
  10. +1 −1 src/twiml/MessagingResponse.ts
  11. +1 −1 src/twiml/VoiceResponse.ts
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
twilio-node changelog
=====================

[2023-01-30] Version 4.1.1
--------------------------
**Library - Fix**
- [PR #907](https://github.com/twilio/twilio-node/pull/907): update exports for backwards-compatibility. Thanks to [@childish-sambino](https://github.com/childish-sambino)!


[2023-01-30] Version 4.1.0
--------------------------
**Library - Feature**
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import lib from "./lib";
export default lib;
export = lib;
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ var __importDefault =
};
Object.defineProperty(exports, "__esModule", { value: true });
const lib_1 = __importDefault(require("./lib"));
exports.default = lib_1.default;
module.exports = lib_1.default;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "twilio",
"description": "A Twilio helper library",
"version": "4.1.0",
"version": "4.1.1",
"author": "API Team <api@twilio.com>",
"contributors": [
{
Loading