Skip to content

Commit

Permalink
Adding Beta and Preview products to main artifact
Browse files Browse the repository at this point in the history
Previously, Beta and Preview products were only included in the `alpha`
artifact. They are now being included in the main artifact to ease
product discoverability and the collective operational overhead of
maintaining multiple artifacts per library.

If you have questions or concerns, raise them in a Github issue and we
will be sure to address.
  • Loading branch information
Doug Black committed Jul 27, 2017
1 parent 1168168 commit b5204c0
Show file tree
Hide file tree
Showing 133 changed files with 53,649 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ twilio-node changelog

[2017-07-27] Version 4.6.0
---------------------------
This release adds Beta and Preview products to main artifact.

Previously, Beta and Preview products were only included in the alpha artifact.
They are now being included in the main artifact to ease product
discoverability and the collective operational overhead of maintaining multiple
artifacts per library.

**Api**
- Remove unused `encryption_type` property on Recordings *(breaking change)*
- Update `status` enum for Messages to include 'accepted'
Expand Down
159 changes: 159 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
# Contributing to `twilio-node`

We'd love for you to contribute to our source code and to make `twilio-node`
even better than it is today! Here are the guidelines we'd like you to follow:

- [Code of Conduct](#coc)
- [Question or Problem?](#question)
- [Issues and Bugs](#issue)
- [Feature Requests](#feature)
- [Documentation fixes](#docs)
- [Submission Guidelines](#submit)
- [Coding Rules](#rules)

## <a name="coc"></a> Code of Conduct

Help us keep `twilio-node` open and inclusive. Please be kind to and considerate
of other developers, as we all have the same goal: make `twilio-node` as good as
it can be.

## <a name="question"></a> Got an API/Product Question or Problem?

If you have questions about how to use `twilio-node`, please see our
[docs][docs-link], and if you don't find the answer there, please contact
[help@twilio.com](mailto:help@twilio.com) with any issues you have.

## <a name="issue"></a> Found an Issue?

If you find a bug in the source code or a mistake in the documentation, you can
help us by submitting [an issue][issue-link]. If the file in which the error
exists has this header:
```
"""
This code was generated by
\ / _ _ _| _ _
| (_)\/(_)(_|\/| |(/_ v1.0.0
/ /
"""
```
then it is a generated file and the change will need to be made by us, but
submitting an issue will help us track it and keep you up-to-date. If the file
isn't generated, you can help us out even more by submitting a Pull Request with
a fix.

**Please see the [Submission Guidelines](#submit) below.**

## <a name="feature"></a> Want a Feature?

You can request a new feature by submitting an issue to our
[GitHub Repository][github]. If you would like to implement a new feature then
consider what kind of change it is:

* **Major Changes** that you wish to contribute to the project should be
discussed first with `twilio-node` contributors in an issue or pull request so
that we can develop a proper solution and better coordinate our efforts,
prevent duplication of work, and help you to craft the change so that it is
successfully accepted into the project.
* **Small Changes** can be crafted and submitted to the
[GitHub Repository][github] as a Pull Request.

## <a name="docs"></a> Want a Doc Fix?

If you want to help improve the docs in the helper library, it's a good idea to
let others know what you're working on to minimize duplication of effort. Create
a new issue (or comment on a related existing one) to let others know what
you're working on.

For large fixes, please build and test the documentation before submitting the
PR to be sure you haven't accidentally introduced layout or formatting issues.

If you want to help improve the docs at
[https://www.twilio.com/docs/libraries/node][docs-link], please contact
[help@twilio.com](mailto:help@twilio.com).

## <a name="submit"></a> Submission Guidelines

### Submitting an Issue
Before you submit your issue search the archive, maybe your question was already
answered.

If your issue appears to be a bug, and hasn't been reported, open a new issue.
Help us to maximize the effort we can spend fixing issues and adding new
features by not reporting duplicate issues. Providing the following information
will increase the chances of your issue being dealt with quickly:

* **Overview of the Issue** - if an error is being thrown a non-minified stack
trace helps
* **Motivation for or Use Case** - explain why this is a bug for you
* **`twilio-node` Version(s)** - is it a regression?
* **Operating System (if relevant)** - is this a problem with all systems or
only specific ones?
* **Reproduce the Error** - provide an isolated code snippet or an unambiguous
set of steps.
* **Related Issues** - has a similar issue been reported before?
* **Suggest a Fix** - if you can't fix the bug yourself, perhaps you can point
to what might be causing the problem (line of code or commit)

**If you get help, help others. Good karma rules!**

### Submitting a Pull Request
Before you submit your pull request consider the following guidelines:

* Search [GitHub][github] for an open or closed Pull Request that relates to
your submission. You don't want to duplicate effort.
* Make your changes in a new git branch:

```shell
git checkout -b my-fix-branch master
```

* Create your patch, **including appropriate test cases**.
* Follow our [Coding Rules](#rules).
* Run the full `twilio-node` test suite (aliased by `make test`), and ensure
that all tests pass.
* Commit your changes using a descriptive commit message.

```shell
git commit -a
```
Note: the optional commit `-a` command line option will automatically "add"
and "rm" edited files.

* Build your changes locally to ensure all the tests pass:

```shell
make test
```

* Push your branch to GitHub:

```shell
git push origin my-fix-branch
```

In GitHub, send a pull request to `twilio-node:master`.
If we suggest changes, then:

* Make the required updates.
* Re-run the `twilio-node` test suite to ensure tests are still passing.
* Commit your changes to your branch (e.g. `my-fix-branch`).
* Push the changes to your GitHub repository (this will update your Pull Request).

That's it! Thank you for your contribution!

#### After your pull request is merged

After your pull request is merged, you can safely delete your branch and pull
the changes from the main (upstream) repository.

## <a name="rules"></a> Coding Rules

To ensure consistency throughout the source code, keep these rules in mind as
you are working:

* All features or bug fixes **must be tested** by one or more tests.
* All classes and methods **must be documented**.

[docs-link]: https://www.twilio.com/docs/libraries/node
[issue-link]: https://github.com/twilio/twilio-node/issues/new
[github]: https://github.com/twilio/twilio-node
54 changes: 54 additions & 0 deletions lib/rest/Fax.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
'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('./fax/V1'); /* jshint ignore:line */


/* jshint ignore:start */
/**
* Initialize fax domain
*
* @constructor Twilio.Fax
*
* @property {Twilio.Fax.V1} v1 - v1 version
* @property {Twilio.Fax.V1.FaxList} faxes - faxes resource
*
* @param {Twilio} twilio - The twilio client
*/
/* jshint ignore:end */
function Fax(twilio) {
Domain.prototype.constructor.call(this, twilio, 'https://fax.twilio.com');

// Versions
this._v1 = undefined;
}

_.extend(Fax.prototype, Domain.prototype);
Fax.prototype.constructor = Fax;

Object.defineProperty(Fax.prototype,
'v1', {
get: function() {
this._v1 = this._v1 || new V1(this);
return this._v1;
}
});

Object.defineProperty(Fax.prototype,
'faxes', {
get: function() {
return this.v1.faxes;
}
});

module.exports = Fax;
54 changes: 54 additions & 0 deletions lib/rest/Messaging.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
'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('./messaging/V1'); /* jshint ignore:line */


/* jshint ignore:start */
/**
* Initialize messaging domain
*
* @constructor Twilio.Messaging
*
* @property {Twilio.Messaging.V1} v1 - v1 version
* @property {Twilio.Messaging.V1.ServiceList} services - services resource
*
* @param {Twilio} twilio - The twilio client
*/
/* jshint ignore:end */
function Messaging(twilio) {
Domain.prototype.constructor.call(this, twilio, 'https://messaging.twilio.com');

// Versions
this._v1 = undefined;
}

_.extend(Messaging.prototype, Domain.prototype);
Messaging.prototype.constructor = Messaging;

Object.defineProperty(Messaging.prototype,
'v1', {
get: function() {
this._v1 = this._v1 || new V1(this);
return this._v1;
}
});

Object.defineProperty(Messaging.prototype,
'services', {
get: function() {
return this.v1.services;
}
});

module.exports = Messaging;
62 changes: 62 additions & 0 deletions lib/rest/Notify.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
'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('./notify/V1'); /* jshint ignore:line */


/* jshint ignore:start */
/**
* Initialize notify domain
*
* @constructor Twilio.Notify
*
* @property {Twilio.Notify.V1} v1 - v1 version
* @property {Twilio.Notify.V1.CredentialList} credentials - credentials resource
* @property {Twilio.Notify.V1.ServiceList} services - services resource
*
* @param {Twilio} twilio - The twilio client
*/
/* jshint ignore:end */
function Notify(twilio) {
Domain.prototype.constructor.call(this, twilio, 'https://notify.twilio.com');

// Versions
this._v1 = undefined;
}

_.extend(Notify.prototype, Domain.prototype);
Notify.prototype.constructor = Notify;

Object.defineProperty(Notify.prototype,
'v1', {
get: function() {
this._v1 = this._v1 || new V1(this);
return this._v1;
}
});

Object.defineProperty(Notify.prototype,
'credentials', {
get: function() {
return this.v1.credentials;
}
});

Object.defineProperty(Notify.prototype,
'services', {
get: function() {
return this.v1.services;
}
});

module.exports = Notify;
Loading

0 comments on commit b5204c0

Please sign in to comment.