Skip to main content

Changelog

0.13.7#

  • Bugfixes related to narratory create method and added more robust TS-compilation settings.

0.13.0#

  • Adding narratory create command line method to bootstrap new projects.
  • Adding a -d / --debug flag to CLI methods narratory start and narratory chat to provide intent classification, confidence and latency figures.

0.12.0#

  • Adding a narratory binary that replaces old npm run commands. Instead, you can now use narratory chat, narratory start, narratory build, narratory validate and narratory deploy.

0.11.4#

  • Adding validate function npm run validate that validates your Intents and Entities and outputs a file in /logs with the validation results.
  • Adding support for short-answers on Telephony clients to prevent unnecessary delay due to Google recognizer being slow through a expectShortAnswer parameter on BotTurns.
  • Improved Logging - adding LogMessage interface

0.11.0#

  • BridgeTurns now accept an array or strings or an array of BotTurns, allowing conditional BotTurns. The previous option of a single BotTurn is no longer supported.

0.10.1#

  • Adding botInitiatives to Agent, allowing you to include BotTurns that aren't in your Narrative to your agent.

0.10.0#

  • Added loglevel to Agent and removed fallbackWebhook. Instead, use logWebhook and choose the appropriate logLevel.

0.9.1#

  • Bridges can now be BotTurns allowing you to have a richer dialog when returning to narrative

0.9.0#

  • Adding SSML support and graphical Rich Content through RichSays See docs on Expressiveness
  • Adding support for Kommunicate chat widgets including rich response support
  • Adding automatic "Can you repeat that" answer that can be disabled on an agent level See docs on Error handling
  • Adding user_text and bot_text system variables for the last said user input and the last bot output, respectively
  • Adding logWebhook parameter to Agent, allowing you to webhook calls for each userTurn to set up your own logging tool See Logs docs
  • Adding id parameter to all bot and user-turns that can be manually set
  • Changing Typescript directory structure to support more dynamic project structures. See below:

Breaking change: When upgrading your app to > 0.9.0, you have to change your tsconfig.json to the following (the rootDir and last row of the include parameter are added):

{    "compilerOptions": {      "outDir": "out",      "rootDir": "./",      "target": "es5",      "lib": [        "es2019"      ],      "resolveJsonModule": true,    },    "include": [      "src/**/*",      "src/**/**/*.json",      "./*.json"    ]  }

0.8.0#

  • Added SESSION option to Dynamic Entities and renamed the previously existing options to BUILD and TURN for consistency.

0.7.0#

  • Renamed ConditionalSays to RichSays and added support for suggestion buttons for Google Assistant.
  • Added support for Voximplant integration, allowing you to do inbound and outbound calls with your Narratory agent.

0.6.10#

  • Added support for fallbackWebhooks so that you can get notified when users trigger fallbacks.

0.6.6#

0.6.0#

  • Introduced new features related to testing; prepopulating phrases in tests, recording chat scripts and replaying scripts automatically. See testing docs for more info.

0.5.4#

  • Added noEntityReset parameter to the Intent interface, allowing you to persist previously set entity values instead of overwriting them with blank values if you have an unfilled slot. This is handy in some slot-filling scenarios. The default behavior is changed to overwrite with blank values unless this parameter is set to true.

0.5.0#

  • Command line method update renamed to build (use it with npm run build in your app directory)