From 420735cdabc4e2fb10b57dfe7c685adfc41446aa Mon Sep 17 00:00:00 2001 From: Dave Gramlich Date: Fri, 23 Sep 2016 10:02:49 -0400 Subject: [PATCH 1/3] umbrella: add speech --- packages/google-cloud/package.json | 1 + packages/google-cloud/src/index.js | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/packages/google-cloud/package.json b/packages/google-cloud/package.json index 05a3e75b02b..3990fd77d47 100644 --- a/packages/google-cloud/package.json +++ b/packages/google-cloud/package.json @@ -103,6 +103,7 @@ "@google-cloud/prediction": "^0.1.2", "@google-cloud/pubsub": "^0.2.0", "@google-cloud/resource": "^0.1.1", + "@google-cloud/speech": "^0.1.0", "@google-cloud/storage": "^0.1.1", "@google-cloud/translate": "^0.2.0", "@google-cloud/vision": "^0.2.0", diff --git a/packages/google-cloud/src/index.js b/packages/google-cloud/src/index.js index 4cf6ccdd13e..ac6b897a7a4 100644 --- a/packages/google-cloud/src/index.js +++ b/packages/google-cloud/src/index.js @@ -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. + * + *

+ * **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. + *

+ * + * @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) From 331f4e403a83c91555709f0d284e18307322551b Mon Sep 17 00:00:00 2001 From: Dave Gramlich Date: Fri, 23 Sep 2016 10:26:12 -0400 Subject: [PATCH 2/3] bumping speech to 0.1.1 --- packages/google-cloud/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/google-cloud/package.json b/packages/google-cloud/package.json index 3990fd77d47..e00e491e317 100644 --- a/packages/google-cloud/package.json +++ b/packages/google-cloud/package.json @@ -103,7 +103,7 @@ "@google-cloud/prediction": "^0.1.2", "@google-cloud/pubsub": "^0.2.0", "@google-cloud/resource": "^0.1.1", - "@google-cloud/speech": "^0.1.0", + "@google-cloud/speech": "^0.1.1", "@google-cloud/storage": "^0.1.1", "@google-cloud/translate": "^0.2.0", "@google-cloud/vision": "^0.2.0", From 312719dae0ec5f610edb10e3b4f1000ff04982f0 Mon Sep 17 00:00:00 2001 From: Dave Gramlich Date: Fri, 23 Sep 2016 10:49:52 -0400 Subject: [PATCH 3/3] added speech keywords to umbrella --- packages/google-cloud/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/google-cloud/package.json b/packages/google-cloud/package.json index e00e491e317..e17e2b512a9 100644 --- a/packages/google-cloud/package.json +++ b/packages/google-cloud/package.json @@ -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"