purecloud-flow-scripting-api-sdk-javascript 0.25.0 → 0.26.0
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/build-browserify/min.browserify.scripting.bundle.js +1 -1
- package/build-scripting/release/scripting.bundle.js +6 -6
- package/package.json +1 -1
- package/src/scripting/documentation/ArchFactoryActions.html +2 -2
- package/src/scripting/documentation/changelog.html +18 -0
- package/src/scripting/documentation/types.d.ts +8 -8
- package/types.d.ts +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purecloud-flow-scripting-api-sdk-javascript",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
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",
|
|
@@ -19161,7 +19161,7 @@ execution due to a maximum number of actions being run.</p>
|
|
|
19161
19161
|
|
|
19162
19162
|
|
|
19163
19163
|
<div class="description">
|
|
19164
|
-
<p>Adds
|
|
19164
|
+
<p>Adds a Set Flow Outcome action to an <a href="ArchBaseMultiActionContainer.html"><code>ArchBaseMultiActionContainer</code></a> such as an <a href="ArchActionOutput.html"><code>action output</code></a>, <a href="ArchTask.html"><code>task</code></a> or <a href="ArchState.html"><code>state</code></a>.</p>
|
|
19165
19165
|
</div>
|
|
19166
19166
|
|
|
19167
19167
|
|
|
@@ -24111,7 +24111,7 @@ Note that when adding a transfer to voicemail action in Architect Scripting, the
|
|
|
24111
24111
|
|
|
24112
24112
|
|
|
24113
24113
|
<div class="description">
|
|
24114
|
-
<p>Adds a
|
|
24114
|
+
<p>Adds a Wait action to a task, state or action output.</p>
|
|
24115
24115
|
</div>
|
|
24116
24116
|
|
|
24117
24117
|
|
|
@@ -60,6 +60,24 @@
|
|
|
60
60
|
|
|
61
61
|
<section>
|
|
62
62
|
<article class="readme"><h2>Change Log</h2>
|
|
63
|
+
<h1>0.26.0</h1>
|
|
64
|
+
<h4>New Features</h4>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>We added support for the <a href="ArchActionFlushAudio.html"><code>ArchActionFlushAudio</code></a> action.</li>
|
|
67
|
+
</ul>
|
|
68
|
+
<h4>Improvements</h4>
|
|
69
|
+
<ul>
|
|
70
|
+
<li>We added some additional error tracing if fetching the service discovery properties fails during <a href="ArchSession.html#startWithAuthToken"><code>ArchSession#startWithAuthToken</code></a> or <a href="ArchSession.html#startWithClientIdAndSecret"><code>ArchSession#startWithClientIdAndSecret</code></a> function calls.</li>
|
|
71
|
+
</ul>
|
|
72
|
+
<h4>Bug Fixes</h4>
|
|
73
|
+
<ul>
|
|
74
|
+
<li>
|
|
75
|
+
<p>We fixed an issue where an error would not be handled correctly when fetching roles and permissions for an OAuth Client when using the <a href="ArchSession.html#startWithClientIdAndSecret"><code>ArchSession#startWithClientIdAndSecret</code></a> function.</p>
|
|
76
|
+
</li>
|
|
77
|
+
<li>
|
|
78
|
+
<p>We fixed an issue with YAML export where a string value of Null was not being wrapped with quotes.</p>
|
|
79
|
+
</li>
|
|
80
|
+
</ul>
|
|
63
81
|
<h1>0.25.0</h1>
|
|
64
82
|
<h4>New Features</h4>
|
|
65
83
|
<ul>
|
|
@@ -1728,7 +1728,14 @@ declare class ArchFactoryActions extends ArchBaseFactory {
|
|
|
1728
1728
|
*/
|
|
1729
1729
|
addActionEndState(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionEndState;
|
|
1730
1730
|
/**
|
|
1731
|
-
* Adds a
|
|
1731
|
+
* Adds a Set Flow Outcome action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1732
|
+
* @param archMultiActionContainer - the Architect multi-action container where the new action should be added. For example, an Architect Scripting state, task or action output where you want the action added.
|
|
1733
|
+
* @param [name] - the name for the new action. If not specified, a name will be auto-generated by Architect Scripting based on the action type being created.
|
|
1734
|
+
* @param [previousArchAction] - the previous Architect action in the archBaseMultiActionContainer after which the new action should be added. If not specified, the new action will be appended to the end of the action container.
|
|
1735
|
+
*/
|
|
1736
|
+
addActionSetFlowOutcome(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionSetFlowOutcome;
|
|
1737
|
+
/**
|
|
1738
|
+
* Adds a Wait action to a task, state or action output.
|
|
1732
1739
|
* @param archMultiActionContainer - the Architect task, state or action output where the new action should be added.
|
|
1733
1740
|
* @param [name] - the name for the new action. If not specified, a name will be auto-generated by Architect Scripting based on the action type being created.
|
|
1734
1741
|
* @param [durationExpression] - the wait duration expression text.
|
|
@@ -1742,13 +1749,6 @@ declare class ArchFactoryActions extends ArchBaseFactory {
|
|
|
1742
1749
|
* @param [previousArchAction] - the previous Architect action in the archBaseMultiActionContainer after which the new action should be added. If not specified, the new action will be appended to the end of the action container.
|
|
1743
1750
|
*/
|
|
1744
1751
|
addActionInitializeFlowOutcome(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionInitializeFlowOutcome;
|
|
1745
|
-
/**
|
|
1746
|
-
* Adds an Set Flow Outcome action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1747
|
-
* @param archMultiActionContainer - the Architect multi-action container where the new action should be added. For example, an Architect Scripting state, task or action output where you want the action added.
|
|
1748
|
-
* @param [name] - the name for the new action. If not specified, a name will be auto-generated by Architect Scripting based on the action type being created.
|
|
1749
|
-
* @param [previousArchAction] - the previous Architect action in the archBaseMultiActionContainer after which the new action should be added. If not specified, the new action will be appended to the end of the action container.
|
|
1750
|
-
*/
|
|
1751
|
-
addActionSetFlowOutcome(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionSetFlowOutcome;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* Adds an action instance from an action definition to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1754
1754
|
* @param archDefinitionAction - the action definition that specifies what type of action to create.
|
package/types.d.ts
CHANGED
|
@@ -1728,7 +1728,14 @@ declare class ArchFactoryActions extends ArchBaseFactory {
|
|
|
1728
1728
|
*/
|
|
1729
1729
|
addActionEndState(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionEndState;
|
|
1730
1730
|
/**
|
|
1731
|
-
* Adds a
|
|
1731
|
+
* Adds a Set Flow Outcome action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1732
|
+
* @param archMultiActionContainer - the Architect multi-action container where the new action should be added. For example, an Architect Scripting state, task or action output where you want the action added.
|
|
1733
|
+
* @param [name] - the name for the new action. If not specified, a name will be auto-generated by Architect Scripting based on the action type being created.
|
|
1734
|
+
* @param [previousArchAction] - the previous Architect action in the archBaseMultiActionContainer after which the new action should be added. If not specified, the new action will be appended to the end of the action container.
|
|
1735
|
+
*/
|
|
1736
|
+
addActionSetFlowOutcome(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionSetFlowOutcome;
|
|
1737
|
+
/**
|
|
1738
|
+
* Adds a Wait action to a task, state or action output.
|
|
1732
1739
|
* @param archMultiActionContainer - the Architect task, state or action output where the new action should be added.
|
|
1733
1740
|
* @param [name] - the name for the new action. If not specified, a name will be auto-generated by Architect Scripting based on the action type being created.
|
|
1734
1741
|
* @param [durationExpression] - the wait duration expression text.
|
|
@@ -1742,13 +1749,6 @@ declare class ArchFactoryActions extends ArchBaseFactory {
|
|
|
1742
1749
|
* @param [previousArchAction] - the previous Architect action in the archBaseMultiActionContainer after which the new action should be added. If not specified, the new action will be appended to the end of the action container.
|
|
1743
1750
|
*/
|
|
1744
1751
|
addActionInitializeFlowOutcome(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionInitializeFlowOutcome;
|
|
1745
|
-
/**
|
|
1746
|
-
* Adds an Set Flow Outcome action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1747
|
-
* @param archMultiActionContainer - the Architect multi-action container where the new action should be added. For example, an Architect Scripting state, task or action output where you want the action added.
|
|
1748
|
-
* @param [name] - the name for the new action. If not specified, a name will be auto-generated by Architect Scripting based on the action type being created.
|
|
1749
|
-
* @param [previousArchAction] - the previous Architect action in the archBaseMultiActionContainer after which the new action should be added. If not specified, the new action will be appended to the end of the action container.
|
|
1750
|
-
*/
|
|
1751
|
-
addActionSetFlowOutcome(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionSetFlowOutcome;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* Adds an action instance from an action definition to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1754
1754
|
* @param archDefinitionAction - the action definition that specifies what type of action to create.
|