purecloud-flow-scripting-api-sdk-javascript 0.57.0 → 0.57.2
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.57.
|
|
3
|
+
"version": "0.57.2",
|
|
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",
|
|
@@ -60,6 +60,16 @@
|
|
|
60
60
|
|
|
61
61
|
<section>
|
|
62
62
|
<article class="readme"><h2>Change Log</h2>
|
|
63
|
+
<h1>0.57.2</h1>
|
|
64
|
+
<h4>Improvements</h4>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>We made internal stability improvements within Architect Scripting.</li>
|
|
67
|
+
</ul>
|
|
68
|
+
<h1>0.57.1</h1>
|
|
69
|
+
<h4>Improvements</h4>
|
|
70
|
+
<ul>
|
|
71
|
+
<li>We made internal stability improvements within Architect Scripting.</li>
|
|
72
|
+
</ul>
|
|
63
73
|
<h1>0.57.0</h1>
|
|
64
74
|
<h4>Improvements</h4>
|
|
65
75
|
<ul>
|
|
@@ -102,7 +112,7 @@
|
|
|
102
112
|
<h1>0.56.1</h1>
|
|
103
113
|
<h4>Bug Fixes</h4>
|
|
104
114
|
<ul>
|
|
105
|
-
<li>We fixed an issue with the <a href="ArchActionSetLanguage.html"><code>Set
|
|
115
|
+
<li>We fixed an issue with the <a href="ArchActionSetLanguage.html"><code>Set Language action</code></a> where importing a flow into an existing flow with a new language would cause the action to incorrectly display a validation error saying the new language is not allowed.</li>
|
|
106
116
|
</ul>
|
|
107
117
|
<h1>0.56.0</h1>
|
|
108
118
|
<h4>Improvements</h4>
|
|
@@ -295,7 +295,7 @@ export class ArchEnums {
|
|
|
295
295
|
* }
|
|
296
296
|
* ```
|
|
297
297
|
*/
|
|
298
|
-
readonly CHOOSER_PRESENTATION_MODES: {"carousel":"carousel","quickReplies":"quickReplies","timePicker":"timePicker"};
|
|
298
|
+
readonly CHOOSER_PRESENTATION_MODES: {"carousel":"carousel","quickReplies":"quickReplies","timePicker":"timePicker","listPicker":"listPicker"};
|
|
299
299
|
/**
|
|
300
300
|
* Returns a string array that contains all valid chooser mode strings.
|
|
301
301
|
*/
|
package/types.d.ts
CHANGED
|
@@ -295,7 +295,7 @@ export class ArchEnums {
|
|
|
295
295
|
* }
|
|
296
296
|
* ```
|
|
297
297
|
*/
|
|
298
|
-
readonly CHOOSER_PRESENTATION_MODES: {"carousel":"carousel","quickReplies":"quickReplies","timePicker":"timePicker"};
|
|
298
|
+
readonly CHOOSER_PRESENTATION_MODES: {"carousel":"carousel","quickReplies":"quickReplies","timePicker":"timePicker","listPicker":"listPicker"};
|
|
299
299
|
/**
|
|
300
300
|
* Returns a string array that contains all valid chooser mode strings.
|
|
301
301
|
*/
|