twilio-taskrouter 0.8.2 → 0.8.4
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.
- package/CHANGELOG.md +12 -0
- package/dist/docs/Activity.html +525 -131
- package/dist/docs/Channel.html +900 -7
- package/dist/docs/IncomingTransfer.html +180 -14
- package/dist/docs/OutgoingTransfer.html +234 -17
- package/dist/docs/Reservation.html +901 -2351
- package/dist/docs/Supervisor.html +4385 -0
- package/dist/docs/Task.html +1738 -537
- package/dist/docs/TaskQueue.html +1021 -5
- package/dist/docs/Transfers.html +444 -4
- package/dist/docs/Worker.html +1555 -594
- package/dist/docs/Workspace.html +159 -913
- package/dist/docs/classes.list.html +1823 -14
- package/dist/docs/global.html +4755 -0
- package/dist/docs/index.html +11 -4
- package/dist/docs/quicksearch.html +1 -1
- package/dist/index.commonjs2.js +1 -1
- package/dist/index.commonjs2.js.LICENSE.txt +1 -1
- package/dist/index.window.js +2 -2
- package/dist/index.window.js.LICENSE.txt +1 -1
- package/package.json +9 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! twilio-taskrouter.js 0.8.
|
|
1
|
+
/*! twilio-taskrouter.js 0.8.4 */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "twilio-taskrouter",
|
|
3
3
|
"title": "Twilio TaskRouter",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.4",
|
|
5
5
|
"description": "Twilio TaskRouter JavaScript library",
|
|
6
6
|
"homepage": "https://www.twilio.com",
|
|
7
7
|
"author": "Wanjun Li <wli@twilio.com>",
|
|
@@ -33,12 +33,13 @@
|
|
|
33
33
|
"test:integration-six-sigma": "mocha --full-trace --check-leaks --require @babel/register -r ./test/mocha/no-unicode-reporter.js -r ./test/mocha/fetch.js ./test/integration/index.js --reporter mochawesome --reporter-options reportDir=reports,reportFilename=e2e-test-report --timeout 40000 --exit -g '@SixSigma'",
|
|
34
34
|
"test:integration:voice": "mocha --full-trace --check-leaks --require @babel/register ./test/voice/index.js --timeout 40000 --exit",
|
|
35
35
|
"test:integration:media": "mocha --full-trace --check-leaks --require @babel/register ./test/media/index.js --timeout 40000 --exit",
|
|
36
|
-
"test": "
|
|
37
|
-
"build:dev": "
|
|
38
|
-
"build:prod": "
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
36
|
+
"test": "yarn test:unit && yarn test:integration",
|
|
37
|
+
"build:dev": "yarn webpack development",
|
|
38
|
+
"build:prod": "yarn webpack production",
|
|
39
|
+
"build:types": "tsc && node ./scripts/types.js",
|
|
40
|
+
"prebuild": "yarn clean && yarn install",
|
|
41
|
+
"build": "yarn lint && yarn build:prod",
|
|
42
|
+
"postbuild": "yarn docs && yarn coverage",
|
|
42
43
|
"docs": "node ./scripts/docs.js ./dist/docs",
|
|
43
44
|
"coverage": "nyc --report-dir coverage --reporter lcov --reporter text-summary yarn test:unit",
|
|
44
45
|
"test:setup": "node test/integration_test_setup/IntegrationTestSetup.js"
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"sinon-chai": "^3.5.0",
|
|
91
92
|
"twilio": "^3.71.3",
|
|
92
93
|
"twilio-sync": "^2.0.1",
|
|
94
|
+
"typescript": "^4.5.5",
|
|
93
95
|
"webpack": "^5.65.0",
|
|
94
96
|
"webpack-cli": "^4.9.1",
|
|
95
97
|
"webpack-node-externals": "^3.0.0"
|