Skip to content

Commit

Permalink
[Librarian] Regenerated @ 61e059e9694883693c4919778c1e37947fdb3168
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug Black committed Jul 27, 2017
1 parent 841fc54 commit 1168168
Show file tree
Hide file tree
Showing 291 changed files with 2,991 additions and 87 deletions.
19 changes: 19 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
twilio-node changelog
=====================

[2017-07-27] Version 4.6.0
---------------------------
**Api**
- Remove unused `encryption_type` property on Recordings *(breaking change)*
- Update `status` enum for Messages to include 'accepted'

**Messaging**
- Fix incorrectly typed capabilities property for PhoneNumbers.

**Notify**
- Add `ToBinding` optional parameter on Notifications resource creation. Accepted values are json strings.

**Preview**
- Add `sms_application_sid` to HostedNumberOrders.

**Taskrouter**
- Fully support conference functionality in reservations.


[2017-07-13] Version 3.5.0
---------------------------

Expand Down
17 changes: 9 additions & 8 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
*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!*
*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!*


**Version:**
**API Subdomain (api/taskrouter/ip_messaging):**

### Code Snippet
```javascript
/* paste code here */
```node
# paste code here
```

### Exception / Log
### Exception/Log
```
<place exception / log here>
<place exception/log here>
```

### Steps to Reproduce
Expand All @@ -21,5 +22,5 @@


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

_If this is a feature request, make sure you search Issues for an existing
request before creating a new one!_
23 changes: 18 additions & 5 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
The MIT License (MIT)
Copyright (c) 2017 Twilio Inc. help@twilio.com
MIT License

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:
Copyright (C) 2017, Twilio, Inc. <help@twilio.com>

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
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:

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.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

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.
71 changes: 21 additions & 50 deletions VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,65 +1,36 @@
# Versioning Strategy

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

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

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

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

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

## Supported Versions

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

## Edge Features (alpha Branch)

Twilio frequently rolls out new features in public and private beta periods.
Twilio strives to ship early and often and bake customer feedback back into our
products. To support that mission, the `twilio-node` helper library has an
`Edge` version based of the `alpha` branch. This version is identified with an
`alpha` metadata tag on the version number.

The way the `Edge` artifact is created is by playing the `Edge` features on top
of our stable artifact. The `Edge` artifact will always have the same version
number as the stable artifact it was created from, but with an `alpha` suffix.

For example, `3.0.0-alpha-1` is the `3.0.0` branch with `Edge` features included.
If there is a change to one of the `Edge` features we may regenerate the `Edge`
artifact and release a new `3.0.0-alpha-2`, new `Edge` artifacts simply increment
the number after the `alpha` suffix. All `Edge` features are considered
unstable and a backwards incompatible change in an `Edge` feature will not cause
any version change so you should take care when upgrading from one `alpha`
version to another.

Once an `Edge` feature has matured it will be considered `Mainline` and included
in the stable artifact, with a `MAJOR` or `MINOR` version bump.

To use an `Edge` artifact in your NODE project you will have to make sure that
you pin the artifact with `alpha` stability in your `package.json`.

[semver]: http://semver.org/

[semver]: http://semver.org/
9 changes: 9 additions & 0 deletions lib/rest/Accounts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./accounts/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Api.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V2010 = require('./api/V2010'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Chat.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./chat/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/IpMessaging.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./ipMessaging/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Lookups.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./lookups/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Monitor.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./monitor/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Pricing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./pricing/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Taskrouter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./taskrouter/V1'); /* jshint ignore:line */
Expand Down
9 changes: 9 additions & 0 deletions lib/rest/Trunking.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */

var _ = require('lodash'); /* jshint ignore:line */
var Domain = require('../base/Domain'); /* jshint ignore:line */
var V1 = require('./trunking/V1'); /* jshint ignore:line */
Expand Down
Loading

0 comments on commit 1168168

Please sign in to comment.