twilio 4.0.2 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +2 -0
  2. package/index.js +9 -0
  3. package/package.json +4 -2
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import lib from "./lib";
2
+ export default lib;
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ var __importDefault =
3
+ (this && this.__importDefault) ||
4
+ function (mod) {
5
+ return mod && mod.__esModule ? mod : { default: mod };
6
+ };
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ const lib_1 = __importDefault(require("./lib"));
9
+ exports.default = lib_1.default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "twilio",
3
3
  "description": "A Twilio helper library",
4
- "version": "4.0.2",
4
+ "version": "4.1.0",
5
5
  "author": "API Team <api@twilio.com>",
6
6
  "contributors": [
7
7
  {
@@ -69,7 +69,9 @@
69
69
  "typedoc": "typedoc --entryPointStrategy expand src --out docs --logLevel Error"
70
70
  },
71
71
  "files": [
72
- "lib"
72
+ "lib",
73
+ "index.js",
74
+ "index.d.ts"
73
75
  ],
74
76
  "main": "./lib",
75
77
  "types": "./index.d.ts",