Releases: novalu/actions-on-google-typescript-template
1.4.0
Add possibility to deploy development and production variants of dialogflow firebase function. This is convenient if you have working function in production and currently developing new version. In this case for development purposes run gulp deploy-development
and use URL of dev function in your dev action. When you are ready for production, run gulp deploy-production
for URL of production function.
BREAKING CHANGES:
• gulp script deploy
is now deploy-all
• gulp script run-test-debug
is now debug-test
• gulp script run-test-continuous
is now debug-test-continuous
Fix missing engines in package.json
1.2.2 Fixed deploy process becase of missing engines param in package.json.
Fix service-account.json path
Firebase functions expecting a json files in functions directory, so I have been forced to move service-account.json from functions/src/config to the root.
Finish Firebase integration
Now you can easily load data for your fulfillments using the Firebase storage. Read the new Firebase part in README.md and reuse the FruitsFirebaseStorage or make your firebase storage.
- Replaced unused Words model and storage with Fruits model and storage.
- Added random fruit as a part of the silly name.
- Wrote notes about the Firebase integration to the README.md.
First release
1.0.1 Update README.md.