Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Reiterating v4.0.106 Patch updates that were done - UI issues with a few Flow Studio controls are fixed for the Chatbot v3 including the Slider Rating control, Choose Many control List view and the default Rating control.

  • The bubble loading indicator design has been updated in this release.

    Image Added

Experience Designer

  • The Experience Designer now includes support for the jsrasign npm module.

    The 'jsrsasign' (RSA-Sign JavaScript Library) is an opensource free cryptography library supporting RSA/RSAPSS/ECDSA/DSA signing/validation, ASN.1, PKCS#1/5/8 private/public key, X.509 certificate, CRL, OCSP, CMS SignedData, TimeStamp, CAdES JSON Web Signature/Token/Key in pure JavaScript.

...

Code Block
var rs = global.get('jsrsasign');
var rsu = global.get('jsrsasign-util');
var oHeader = {alg: "HS256"};
var sHeader = JSON.stringify(oHeader);
var sPayload = "aaa"
var sJWS = rs.KJUR.jws.JWS.sign("HS256", sHeader, sPayload, "616161");
node.warn(sJWS);
return msg;


Experience Manager

  • The display name of the autogenerated Intents can be changed to make them more human-readable. For example, the listing name for Flow Studio intents is 'Flow_Token.' The user can now change the name in the Intent Display Name field to whatever they want.
    After changing, the display name will appear on the listing screen.

...

  • Earlier, on creating a new Dynamic schema, the Button to Index the schema was not visible. This is now handled.

  • We have added the ability to bulk delete content using the API endpoint. Thus making customized delete action simpler. Please refer to this How to bulk delete schema content using API? for more info.

...