This repository was archived by the owner on Jan 10, 2023. It is now read-only.
  
  
  - 
                Notifications
    
You must be signed in to change notification settings  - Fork 41
 
Upgrade dependencies to match quality checklist #23
          
     Merged
      
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            5 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      a9a1023
              
                Resolves #22
              
              
                rojasTob 7b4d2a3
              
                Change mock functions
              
              
                rojasTob c236653
              
                Fix typo, add EOL and add explanation about ngrok.
              
              
                rojasTob 23ca764
              
                Remove mocha, chai and mock-require. They are not needed.
              
              
                rojasTob 26c794c
              
                Change from Labs to Inc.
              
              
                rojasTob File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| TWILIO_ACCOUNT_SID=ACXXXXXXXXXXXXXXXXXXX | ||
| TWILIO_AUTH_TOKEN=xxxxxxxxxxxxxxxxx | ||
| TWILIO_NUMBER=+1XXXXXXXXXX | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
| 
     | 
||
| name: Node.js | ||
| 
     | 
||
| on: | ||
| push: | ||
| branches: [ master ] | ||
| pull_request: | ||
| branches: [ master ] | ||
| 
     | 
||
| jobs: | ||
| build: | ||
| 
     | 
||
| runs-on: ubuntu-latest | ||
| 
     | 
||
| strategy: | ||
| matrix: | ||
| node-version: [10.x, 12.x] | ||
| 
     | 
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v1 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| - run: npm ci | ||
| - run: npm test | ||
| env: | ||
| CI: true | ||
| TWILIO_ACCOUNT_SID: ACXXXXX | ||
| TWILIO_AUTH_TOKEN: XXXXX | ||
| TWILIO_NUMBER: +15555555555 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| .DS_Store | ||
| node_modules | ||
| build | ||
| .env | ||
| .env | ||
| npm-debug.log | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| pull_request_rules: | ||
| - name: automatic merge for Dependabot pull requests | ||
| conditions: | ||
| - author=dependabot-preview[bot] | ||
| - status-success=build (macos-latest, 10) | ||
| - status-success=build (macos-latest, 12) | ||
| - status-success=build (windows-latest, 10) | ||
| - status-success=build (windows-latest, 12) | ||
| - status-success=build (ubuntu-latest, 10) | ||
| - status-success=build (ubuntu-latest, 12) | ||
| actions: | ||
| merge: | ||
| method: squash | 
This file was deleted.
      
      Oops, something went wrong.
      
    
  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| # Contributor Covenant Code of Conduct | ||
| 
     | 
||
| ## Our Pledge | ||
| 
     | 
||
| In the interest of fostering an open and welcoming environment, we as | ||
| contributors and maintainers pledge to making participation in our project and | ||
| our community a harassment-free experience for everyone, regardless of age, body | ||
| size, disability, ethnicity, sex characteristics, gender identity and expression, | ||
| level of experience, education, socio-economic status, nationality, personal | ||
| appearance, race, religion, or sexual identity and orientation. | ||
| 
     | 
||
| ## Our Standards | ||
| 
     | 
||
| Examples of behavior that contributes to creating a positive environment | ||
| include: | ||
| 
     | 
||
| - Using welcoming and inclusive language | ||
| - Being respectful of differing viewpoints and experiences | ||
| - Gracefully accepting constructive criticism | ||
| - Focusing on what is best for the community | ||
| - Showing empathy towards other community members | ||
| 
     | 
||
| Examples of unacceptable behavior by participants include: | ||
| 
     | 
||
| - The use of sexualized language or imagery and unwelcome sexual attention or | ||
| advances | ||
| - Trolling, insulting/derogatory comments, and personal or political attacks | ||
| - Public or private harassment | ||
| - Publishing others' private information, such as a physical or electronic | ||
| address, without explicit permission | ||
| - Other conduct which could reasonably be considered inappropriate in a | ||
| professional setting | ||
| 
     | 
||
| ## Our Responsibilities | ||
| 
     | 
||
| Project maintainers are responsible for clarifying the standards of acceptable | ||
| behavior and are expected to take appropriate and fair corrective action in | ||
| response to any instances of unacceptable behavior. | ||
| 
     | 
||
| Project maintainers have the right and responsibility to remove, edit, or | ||
| reject comments, commits, code, wiki edits, issues, and other contributions | ||
| that are not aligned to this Code of Conduct, or to ban temporarily or | ||
| permanently any contributor for other behaviors that they deem inappropriate, | ||
| threatening, offensive, or harmful. | ||
| 
     | 
||
| ## Scope | ||
| 
     | 
||
| This Code of Conduct applies both within project spaces and in public spaces | ||
| when an individual is representing the project or its community. Examples of | ||
| representing a project or community include using an official project e-mail | ||
| address, posting via an official social media account, or acting as an appointed | ||
| representative at an online or offline event. Representation of a project may be | ||
| further defined and clarified by project maintainers. | ||
| 
     | 
||
| ## Enforcement | ||
| 
     | 
||
| Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
| reported by contacting the project team at open-source@twilio.com. All | ||
| complaints will be reviewed and investigated and will result in a response that | ||
| is deemed necessary and appropriate to the circumstances. The project team is | ||
| obligated to maintain confidentiality with regard to the reporter of an incident. | ||
| Further details of specific enforcement policies may be posted separately. | ||
| 
     | 
||
| Project maintainers who do not follow or enforce the Code of Conduct in good | ||
| faith may face temporary or permanent repercussions as determined by other | ||
| members of the project's leadership. | ||
| 
     | 
||
| ## Attribution | ||
| 
     | 
||
| This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, | ||
| available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html | ||
| 
     | 
||
| [homepage]: https://www.contributor-covenant.org | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # Contributing to Twilio | ||
| 
     | 
||
| All third party contributors acknowledge that any contributions they provide will be made under the same open source license that the open source project is provided under. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| var twilio = require('twilio'); | ||
| var VoiceResponse = twilio.twiml.VoiceResponse; | ||
| var config = require('../config'); | ||
| var client = twilio(config.accountSid, config.authToken); | ||
| 
     | 
||
| module.exports = { | ||
| createCall: (salesNumber, phoneNumber, headersHost, twilioClient = client) => { | ||
| let url = headersHost + '/outbound/' + encodeURIComponent(salesNumber); | ||
| let options = { | ||
| to: phoneNumber, | ||
| from: config.twilioNumber, | ||
| url: url, | ||
| }; | ||
| 
     | 
||
| return twilioClient.calls.create(options) | ||
| .then((message) => { | ||
| console.log(message.responseText); | ||
| return Promise.resolve('Thank you! We will be calling you shortly.') | ||
| }) | ||
| .catch((error) => { | ||
| console.log(error); | ||
| return Promise.reject(error); | ||
| }); | ||
| }, | ||
| voiceResponse: (salesNumber, Voice = VoiceResponse) => { | ||
| let twimlResponse = new Voice(); | ||
| 
     | 
||
| twimlResponse.say('Thanks for contacting our sales department. Our ' + | ||
| 'next available representative will take your call. ', | ||
| { voice: 'alice' }); | ||
| twimlResponse.dial(salesNumber); | ||
| 
     | 
||
| return twimlResponse.toString(); | ||
| } | ||
| } | 
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.