Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/google-cloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@
"google cloud resource manager",
"cloud resource manager",
"resource manager",
"google cloud speech",
"cloud speech",
"speech",
"google cloud vision",
"cloud vision",
"vision"
Expand All @@ -103,6 +106,7 @@
"@google-cloud/prediction": "^0.1.2",
"@google-cloud/pubsub": "^0.2.0",
"@google-cloud/resource": "^0.1.1",
"@google-cloud/speech": "^0.1.1",
"@google-cloud/storage": "^0.1.1",
"@google-cloud/translate": "^0.2.0",
"@google-cloud/vision": "^0.2.0",
Expand Down
25 changes: 25 additions & 0 deletions packages/google-cloud/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,31 @@ var apis = {
*/
resource: require('@google-cloud/resource'),

/**
* The [Cloud Speech API](https://cloud.google.com/speech/docs) enables easy
* integration of Google speech recognition technologies into developer
* applications. Send audio and receive a text transcription from the Cloud
* Speech API service.
*
* <p class="notice">
* **This is a Beta release of Google Cloud Speech.** This feature is not
* covered by any SLA or deprecation policy and may be subject to
* backward-incompatible changes.
* </p>
*
* @type {module:speech}
*
* @return {module:speech}
*
* @example
* var gcloud = require('google-cloud');
* var speech = gcloud.speech({
* projectId: 'grape-spaceship-123',
* keyFilename: '/path/to/keyfile.json'
* });
*/
speech: require('@google-cloud/speech'),

/**
* Google Cloud Storage allows you to store data on Google infrastructure.
* Read [Google Cloud Storage API docs](https://developers.google.com/storage)
Expand Down