purecloud-flow-scripting-api-sdk-javascript 0.44.2 → 0.44.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purecloud-flow-scripting-api-sdk-javascript",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.3",
|
|
4
4
|
"description": "JavaScript library for creating, editing, and managing Genesys Cloud Architect flows",
|
|
5
5
|
"main": "build-scripting/release/scripting.bundle.js",
|
|
6
6
|
"author": "Genesys",
|
|
@@ -1820,7 +1820,8 @@ see if text to speech engine and voice information is available on an organizati
|
|
|
1820
1820
|
|
|
1821
1821
|
<div class="description">
|
|
1822
1822
|
<p>Returns the default text to speech engine that is available for this language. If this language does not have a default
|
|
1823
|
-
text to speech engine, nothing is returned
|
|
1823
|
+
text to speech engine, nothing is returned. Remember that a default TTS engine may not always be available for a given
|
|
1824
|
+
flow type.</p>
|
|
1824
1825
|
</div>
|
|
1825
1826
|
|
|
1826
1827
|
|
|
@@ -60,6 +60,11 @@
|
|
|
60
60
|
|
|
61
61
|
<section>
|
|
62
62
|
<article class="readme"><h2>Change Log</h2>
|
|
63
|
+
<h1>0.44.3</h1>
|
|
64
|
+
<h4>Bug Fixes</h4>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>We fixed an issue where <a href="ArchBaseFlowBotWithKnowledge.html#botFlowSettings"><code>ArchBaseFlowBotWithKnowledge#botFlowSettings</code></a> would return undefined unless the Knowledge functionality is available in a Genesys Cloud organization.</li>
|
|
67
|
+
</ul>
|
|
63
68
|
<h1>0.44.2</h1>
|
|
64
69
|
<h4>Bug Fixes</h4>
|
|
65
70
|
<ul>
|
|
@@ -2996,7 +2996,8 @@ export class ArchLanguage extends ArchBaseCoreObject {
|
|
|
2996
2996
|
getTtsEnginesForFlowType(flowType: string): ArchTtsEngine[];
|
|
2997
2997
|
/**
|
|
2998
2998
|
* Returns the default text to speech engine that is available for this language. If this language does not have a default
|
|
2999
|
-
* text to speech engine, nothing is returned.
|
|
2999
|
+
* text to speech engine, nothing is returned. Remember that a default TTS engine may not always be available for a given
|
|
3000
|
+
* flow type.
|
|
3000
3001
|
*/
|
|
3001
3002
|
getDefaultTtsEngine(): ArchTtsEngine;
|
|
3002
3003
|
/**
|
package/types.d.ts
CHANGED
|
@@ -2996,7 +2996,8 @@ export class ArchLanguage extends ArchBaseCoreObject {
|
|
|
2996
2996
|
getTtsEnginesForFlowType(flowType: string): ArchTtsEngine[];
|
|
2997
2997
|
/**
|
|
2998
2998
|
* Returns the default text to speech engine that is available for this language. If this language does not have a default
|
|
2999
|
-
* text to speech engine, nothing is returned.
|
|
2999
|
+
* text to speech engine, nothing is returned. Remember that a default TTS engine may not always be available for a given
|
|
3000
|
+
* flow type.
|
|
3000
3001
|
*/
|
|
3001
3002
|
getDefaultTtsEngine(): ArchTtsEngine;
|
|
3002
3003
|
/**
|