alexa-lambda-skill
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -9,3 +9,3 @@ { | ||
"description": "Create Alexa Skills for AWS Lambda, easily.", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"main": "build/index.min.js", | ||
@@ -12,0 +12,0 @@ "jsnext:main": "src/index.js", |
@@ -26,3 +26,3 @@ # alexa-lambda-skill | ||
echo({ sentence }) { | ||
return say(sentence).card('Echo', sentence); | ||
return say(sentence).card({ title: 'Echo', content: sentence }); | ||
} | ||
@@ -44,3 +44,3 @@ | ||
return fetch(url).then(response => response.json()).then(({ name, author }) => { | ||
return say(`${name} was created by ${author.name}`).card(name, `Credits: ${author.name} <${author.email}> (${author.url})`); | ||
return say(`${name} was created by ${author.name}`).card({ title: name, content: `Credits: ${author.name} <${author.email}> (${author.url})`}); | ||
}); | ||
@@ -47,0 +47,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13062