aimpress-chatbot/node_modules/botframework-schema/README.md
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

24 lines
916 B
Markdown

Activity schema for the Microsoft Bot Framework.
- [Installing](#installing)
- [Documentation](https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0)
- [GitHub Repo](https://github.com/Microsoft/botbuilder-js)
- [Report Issues](https://github.com/Microsoft/botbuilder-js/issues)
## Installing
To add the preview version of this package to your bot be sure include the @preview tag:
```bash
npm install --save botframework-schema@preview
```
While this package is in preview it's possible for updates to include build breaks. To avoid having any updates break your bot it's recommended that you update the dependency table of your bots `package.json` file to lock down the specific version of the package you're using:
```JSON
{
"dependencies": {
"botbuilder": "4.0.0-preview1.2",
"otframework-schema": "4.0.0-preview1.2"
}
}
```