@jargon/actions-on-google
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -0,1 +1,4 @@ | ||
### 0.3.1 | ||
Readme updates only; no functionality changes | ||
### 0.3.0 | ||
@@ -2,0 +5,0 @@ Bump sdk-core dependency to 1.1.0 to take of advantage of its new built-in resources for common scenarios. These resources are available using the `RenderItem` keys: |
{ | ||
"name": "@jargon/actions-on-google", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "The Jargon Actions on Google SDK makes it easy to manage the content of your Google Action", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
# Jargon SDK for Google Assistant Actions (nodejs) | ||
The Jargon SDK makes it easy for skill developers to manage their runtime content, and to support | ||
multiple languages from within their skill. | ||
The Jargon SDK makes it easy for action developers to manage their runtime content, and to support | ||
multiple languages from within their action. | ||
Need help localizing your skills to new languages and locales? Contact Jargon at localization@jargon.com. | ||
Need help localizing your actions to new languages and locales? Contact Jargon at localization@jargon.com. | ||
@@ -20,3 +20,3 @@ ## Requirements | ||
Like the Actions on Goolge support library, the Jargon SDK is built using [TypeScript](https://www.typescriptlang.org/index.html), | ||
Like the Actions on Google support library, the Jargon SDK is built using [TypeScript](https://www.typescriptlang.org/index.html), | ||
and includes typing information in the distribution package. | ||
@@ -27,9 +27,8 @@ | ||
### Content resources and resource files | ||
Content resources define the text that your skill outputs to users, via Alexa's voice, card content, | ||
or screen content. It's important that these resources live outside of your skill's source code to | ||
Content resources define the text that your action outputs to users, via Alexa's voice, card content, | ||
or screen content. It's important that these resources live outside of your action's source code to | ||
make it possible to localize them into other languages. | ||
The Jargon SDK expects resource files to live in the "resources" subdirectory within your lambda | ||
code (i.e., skill_root/lambda/custom/resources). Each locale has a single resouce file, named for | ||
that locale (e.g., "en-US.json"). | ||
The Jargon SDK expects resource files to live in the "resources" subdirectory within your fulfillment | ||
code. Each locale has a single resource file, named for that locale (e.g., "en-US.json"). | ||
@@ -77,3 +76,3 @@ Resource files are JSON, with a single top-level object (similar to package.json). The keys within that | ||
### Variations | ||
It's important for Alexa skills to vary the words they use in response to users, lest they sound robotic. The Jargon SDK | ||
It's important for Google Assistant Actions to vary the words they use in response to users, lest they sound robotic. The Jargon SDK | ||
makes ths simple with built-in variation support. Variations are defined using nested objects: | ||
@@ -161,3 +160,3 @@ ```json | ||
Intializing the Jargon SDK is simple: | ||
Initializing the Jargon SDK is simple: | ||
@@ -164,0 +163,0 @@ ```javascript |
48163
271