-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all API resources to under a single 'api' topic (#19)
* Truncate 'api:v2010:accounts' down to just 'api' * Move all advanced API topics to under 'api' and 'api:core'
- Loading branch information
1 parent
d02a3ac
commit c1f87c3
Showing
8 changed files
with
49 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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,5 +1,13 @@ | ||
const TwilioApiBrowser = require('./api-browser'); | ||
const { getTopicName, TOPIC_SEPARATOR } = require('./get-topic-name'); | ||
const { TwilioApiBrowser, isApi2010 } = require('./api-browser'); | ||
const { getTopicName, TOPIC_SEPARATOR, BASE_TOPIC_NAME, CORE_TOPIC_NAME } = require('./get-topic-name'); | ||
const { getActionDescription } = require('./get-action-description'); | ||
|
||
module.exports = { TwilioApiBrowser, getTopicName, TOPIC_SEPARATOR, getActionDescription }; | ||
module.exports = { | ||
TwilioApiBrowser, | ||
isApi2010, | ||
getTopicName, | ||
TOPIC_SEPARATOR, | ||
BASE_TOPIC_NAME, | ||
CORE_TOPIC_NAME, | ||
getActionDescription | ||
}; |
This file contains 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 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