Skip to content

Commit 1168168

Browse files
author
Doug Black
committed
[Librarian] Regenerated @ 61e059e9694883693c4919778c1e37947fdb3168
1 parent 841fc54 commit 1168168

File tree

291 files changed

+2991
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

291 files changed

+2991
-87
lines changed

CHANGES.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
twilio-node changelog
22
=====================
33

4+
[2017-07-27] Version 4.6.0
5+
---------------------------
6+
**Api**
7+
- Remove unused `encryption_type` property on Recordings *(breaking change)*
8+
- Update `status` enum for Messages to include 'accepted'
9+
10+
**Messaging**
11+
- Fix incorrectly typed capabilities property for PhoneNumbers.
12+
13+
**Notify**
14+
- Add `ToBinding` optional parameter on Notifications resource creation. Accepted values are json strings.
15+
16+
**Preview**
17+
- Add `sms_application_sid` to HostedNumberOrders.
18+
19+
**Taskrouter**
20+
- Fully support conference functionality in reservations.
21+
22+
423
[2017-07-13] Version 3.5.0
524
---------------------------
625

ISSUE_TEMPLATE.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
*Note: These issues are for bugs and feature requests for the helper libraries. If you need help or support, please email help@twilio.com and one of our experts will assist you!*
1+
*Note: These issues are for bugs and feature requests for the helper libraries.
2+
If you need help or support, please email help@twilio.com and one of our experts
3+
will assist you!*
24

35

46
**Version:**
5-
**API Subdomain (api/taskrouter/ip_messaging):**
67

78
### Code Snippet
8-
```javascript
9-
/* paste code here */
9+
```node
10+
# paste code here
1011
```
1112

12-
### Exception / Log
13+
### Exception/Log
1314
```
14-
<place exception / log here>
15+
<place exception/log here>
1516
```
1617

1718
### Steps to Reproduce
@@ -21,5 +22,5 @@
2122

2223

2324
### Feature Request
24-
_If this is a feature request, make sure you search Issues for an existing request before creating a new one!_
25-
25+
_If this is a feature request, make sure you search Issues for an existing
26+
request before creating a new one!_

LICENSE.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
The MIT License (MIT)
2-
Copyright (c) 2017 Twilio Inc. help@twilio.com
1+
MIT License
32

4-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3+
Copyright (C) 2017, Twilio, Inc. <help@twilio.com>
54

6-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9+
of the Software, and to permit persons to whom the Software is furnished to do
10+
so, subject to the following conditions:
711

8-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

VERSIONS.md

+21-50
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,36 @@
11
# Versioning Strategy
22

3-
`twilio-node` uses a modified version of [Semantic Versioning][semver] for all
4-
changes to the helper library. It is strongly encouraged that you pin at least
5-
the major version and potentially the minor version to avoid pulling in breaking
6-
changes.
3+
`twilio-node` uses a modified version of [Semantic Versioning][semver] for
4+
all changes to the helper library. It is strongly encouraged that you pin at
5+
least the major version and potentially the minor version to avoid pulling in
6+
breaking changes.
77

88
Semantic Versions take the form of `MAJOR`.`MINOR`.`PATCH`
99

10-
When bugs are fixed in the library in a backwards compatible way, the `PATCH`
11-
level will be incremented by one. When new features are added to the library
10+
When bugs are fixed in the library in a backwards compatible way, the `PATCH`
11+
level will be incremented by one. When new features are added to the library
1212
in a backwards compatible way, the `PATCH` level will be incremented by one.
1313
`PATCH` changes should _not_ break your code and are generally safe for upgrade.
1414

15-
When a new large feature set comes online or a small breaking change is
16-
introduced, the `MINOR` version will be incremented by one and the `PATCH`
15+
When a new large feature set comes online or a small breaking change is
16+
introduced, the `MINOR` version will be incremented by one and the `PATCH`
1717
version reset to zero. `MINOR` changes _may_ require some amount of manual code
18-
change for upgrade. These backwards-incompatible changes will generally be limited
19-
to a small number of function signature changes.
18+
change for upgrade. These backwards-incompatible changes will generally be
19+
limited to a small number of function signature changes.
2020

21-
The `MAJOR` version is used to indicate the family of technology represented by
22-
the helper library. It increased from `2.x.x` to `3.x.x` when Twilio moved to
23-
auto generation of helper libraries. Breaking changes that requires extensive
24-
reworking of code (like the `2.x.x` to `3.x.x` upgrade) will case the `MAJOR`
25-
version to be incremented by one, the `MINOR` and `PATCH` versions will be reset
26-
to zero. Twilio understands that this can be very disruptive, we will only
27-
introduce this type of breaking change when absolutely necessary. New `MAJOR`
28-
versions will be communicated in advance with `Release Candidates` and a
29-
schedule.
21+
The `MAJOR` version is used to indicate the family of technology represented by
22+
the helper library. Breaking changes that requires extensive reworking of code
23+
will case the `MAJOR` version to be incremented by one, and the `MINOR` and
24+
`PATCH` versions will be reset to zero. Twilio understands that this can be very
25+
disruptive, so we will only introduce this type of breaking change when
26+
absolutely necessary. New `MAJOR` versions will be communicated in advance with
27+
`Release Candidates` and a schedule.
3028

3129
## Supported Versions
3230

33-
`twilio-node` follows an evergreen model of support. New features and
34-
functionality will only be added to the current version. The current version -
35-
1 will continue to be supported with bugfixes and security updates, but no new
31+
`twilio-node` follows an evergreen model of support. New features and
32+
functionality will only be added to the current version. The current version -
33+
1 will continue to be supported with bug fixes and security updates, but no new
3634
features.
3735

38-
## Edge Features (alpha Branch)
39-
40-
Twilio frequently rolls out new features in public and private beta periods.
41-
Twilio strives to ship early and often and bake customer feedback back into our
42-
products. To support that mission, the `twilio-node` helper library has an
43-
`Edge` version based of the `alpha` branch. This version is identified with an
44-
`alpha` metadata tag on the version number.
45-
46-
The way the `Edge` artifact is created is by playing the `Edge` features on top
47-
of our stable artifact. The `Edge` artifact will always have the same version
48-
number as the stable artifact it was created from, but with an `alpha` suffix.
49-
50-
For example, `3.0.0-alpha-1` is the `3.0.0` branch with `Edge` features included.
51-
If there is a change to one of the `Edge` features we may regenerate the `Edge`
52-
artifact and release a new `3.0.0-alpha-2`, new `Edge` artifacts simply increment
53-
the number after the `alpha` suffix. All `Edge` features are considered
54-
unstable and a backwards incompatible change in an `Edge` feature will not cause
55-
any version change so you should take care when upgrading from one `alpha`
56-
version to another.
57-
58-
Once an `Edge` feature has matured it will be considered `Mainline` and included
59-
in the stable artifact, with a `MAJOR` or `MINOR` version bump.
60-
61-
To use an `Edge` artifact in your NODE project you will have to make sure that
62-
you pin the artifact with `alpha` stability in your `package.json`.
63-
64-
[semver]: http://semver.org/
65-
36+
[semver]: http://semver.org/

lib/rest/Accounts.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./accounts/V1'); /* jshint ignore:line */

lib/rest/Api.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V2010 = require('./api/V2010'); /* jshint ignore:line */

lib/rest/Chat.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./chat/V1'); /* jshint ignore:line */

lib/rest/IpMessaging.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./ipMessaging/V1'); /* jshint ignore:line */

lib/rest/Lookups.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./lookups/V1'); /* jshint ignore:line */

lib/rest/Monitor.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./monitor/V1'); /* jshint ignore:line */

lib/rest/Pricing.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./pricing/V1'); /* jshint ignore:line */

lib/rest/Taskrouter.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./taskrouter/V1'); /* jshint ignore:line */

lib/rest/Trunking.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

3+
/* jshint ignore:start */
4+
/**
5+
* This code was generated by
6+
* \ / _ _ _| _ _
7+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
8+
* / /
9+
*/
10+
/* jshint ignore:end */
11+
312
var _ = require('lodash'); /* jshint ignore:line */
413
var Domain = require('../base/Domain'); /* jshint ignore:line */
514
var V1 = require('./trunking/V1'); /* jshint ignore:line */

0 commit comments

Comments
 (0)