Skip to content

Commit

Permalink
[Librarian] Regenerated @ c554bb4a2cf5db7afe4369a63a1515e7acbf55ed
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-ci committed May 15, 2019
1 parent 1e6bec6 commit 79f3477
Show file tree
Hide file tree
Showing 8 changed files with 595 additions and 138 deletions.
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
twilio-cli changelog
=====================

[2019-05-15] Version 1.1.1
---------------------------
**Library**
- [PR #24](https://github.com/twilio/twilio-cli/pull/24): Prompt for project name if not provided when adding a project. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
- [PR #19](https://github.com/twilio/twilio-cli/pull/19): Move all API resources to under a single 'api' topic. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
- [PR #23](https://github.com/twilio/twilio-cli/pull/23): Use the default output properties from the API definition. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
- [PR #22](https://github.com/twilio/twilio-cli/pull/22): Add versioning link and doc to README. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
- [PR #21](https://github.com/twilio/twilio-cli/pull/21): Prompt user when creating default project with env vars set. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
- [PR #20](https://github.com/twilio/twilio-cli/pull/20): Use env vars first for credentials if no project is specified. Thanks to [@childish-sambino](https://github.com/childish-sambino)!

**Video**
- [Rooms] Add Video Subscription API

**Wireless**
- Added `imei` to Data Session resource.


[2019-05-07] Version 1.1.0
---------------------------
**Library**
Expand Down
19 changes: 6 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@twilio/cli-core": "^1.1.0",
"chalk": "^2.4.1",
"ngrok": "^3.0.1",
"twilio": "^3.30.3"
"twilio": "^3.31.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
Expand Down
48 changes: 48 additions & 0 deletions src/services/twilio-api/twilio_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -16019,6 +16019,54 @@
]
},
"/2010-04-01/Accounts/{AccountSid}/ConnectApps/{Sid}.json": {
"delete": {
"description": "Delete an instance of a connect-app",
"parameters": [
{
"description": "The SID of the Account that created the resource to fetch",
"in": "path",
"name": "AccountSid",
"required": true,
"schema": {
"maxLength": 34,
"minLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"type": "string"
}
},
{
"description": "The unique string that identifies the resource",
"in": "path",
"name": "Sid",
"required": true,
"schema": {
"maxLength": 34,
"minLength": 34,
"pattern": "^CN[0-9a-fA-F]{32}$",
"type": "string"
}
}
],
"responses": {
"204": {
"content": {
"application/json": {
"schema": {
"type": "null"
}
}
}
}
},
"security": [
{
"accountSid_authToken": []
}
],
"tags": [
"GA"
]
},
"description": "Twilio Connect apps",
"get": {
"description": "Fetch an instance of a connect-app",
Expand Down
Loading

0 comments on commit 79f3477

Please sign in to comment.