Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Bump version to MINOR release 2.1.0
Browse files Browse the repository at this point in the history
Version 2.1.0 Release Notes:
* Various fixes and improvements for reference documentation
* Convert lambda header keys to lowercase
* Consolidate common conversation types
* Add intent array matching
* Add screen surface capability shortcut
* Add ability to send back headers
* Add clearer examples for GitHub readme
* Regenerate transaction types to support new transaction features
* Add ROUTINES to GoogleActionsV2TriggerContextTimeContextFrequency
* Add deprecated fields previously not generated
* Add support for profile retrieval
* Add support for Table card response type
* Add service for Smart Home
* Add clearer examples for GitHub readme

Change-Id: Idafdf03864e42a5a0b77f624897f00f388e8bc15
  • Loading branch information
Canain committed May 8, 2018
1 parent 956f8f5 commit d7ef56e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Actions on Google Client Library for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.0.1",
"version": "2.1.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
Expand Down
5 changes: 3 additions & 2 deletions src/service/smarthome/smarthome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,9 @@ export const smarthome: SmartHome = (options = {}) => attach<SmartHomeApp>({
const handler = this._intents[intent]

return {
body: await handler(body),
status: 200,
headers: {},
body: await handler(body),
}
},
}, options)
}, options)

0 comments on commit d7ef56e

Please sign in to comment.