purecloud-flow-scripting-api-sdk-javascript 0.19.0 → 0.20.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/ArchEnums.html +5 -1
- package/src/scripting/documentation/changelog.html +5 -0
- package/src/scripting/documentation/types.d.ts +5 -1
- package/types.d.ts +5 -1
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.20.0",
|
|
4
4
|
"description": "Javascript library to enable scripting PureCloud Architect flows. ( ALPHA )",
|
|
5
5
|
"main": "build-scripting/release/scripting.bundle.js",
|
|
6
6
|
"author": "Genesys",
|
|
@@ -4831,14 +4831,18 @@ added outputs will have identifiers that are not in the enum above.</p>
|
|
|
4831
4831
|
<div class="description">
|
|
4832
4832
|
<p>Returns a JSON object with these properties whose values are valid variable scopes:</p>
|
|
4833
4833
|
<pre class="prettyprint source"><code>{
|
|
4834
|
-
|
|
4834
|
+
bot: 'bot',
|
|
4835
4835
|
call: 'call',
|
|
4836
4836
|
chat: 'chat',
|
|
4837
4837
|
common: 'common'
|
|
4838
|
+
email: 'email',
|
|
4838
4839
|
flow: 'flow',
|
|
4839
4840
|
interaction: 'interaction',
|
|
4841
|
+
interaction: 'message',
|
|
4842
|
+
session: 'session',
|
|
4840
4843
|
slot: 'slot',
|
|
4841
4844
|
state: 'state',
|
|
4845
|
+
survey: 'survey'
|
|
4842
4846
|
task: 'task',
|
|
4843
4847
|
workflow: 'workflow'
|
|
4844
4848
|
}
|
|
@@ -555,14 +555,18 @@ declare class ArchEnums {
|
|
|
555
555
|
* Returns a JSON object with these properties whose values are valid variable scopes:
|
|
556
556
|
* ```
|
|
557
557
|
* {
|
|
558
|
-
*
|
|
558
|
+
* bot: 'bot',
|
|
559
559
|
* call: 'call',
|
|
560
560
|
* chat: 'chat',
|
|
561
561
|
* common: 'common'
|
|
562
|
+
* email: 'email',
|
|
562
563
|
* flow: 'flow',
|
|
563
564
|
* interaction: 'interaction',
|
|
565
|
+
* interaction: 'message',
|
|
566
|
+
* session: 'session',
|
|
564
567
|
* slot: 'slot',
|
|
565
568
|
* state: 'state',
|
|
569
|
+
* survey: 'survey'
|
|
566
570
|
* task: 'task',
|
|
567
571
|
* workflow: 'workflow'
|
|
568
572
|
* }
|
package/types.d.ts
CHANGED
|
@@ -555,14 +555,18 @@ declare class ArchEnums {
|
|
|
555
555
|
* Returns a JSON object with these properties whose values are valid variable scopes:
|
|
556
556
|
* ```
|
|
557
557
|
* {
|
|
558
|
-
*
|
|
558
|
+
* bot: 'bot',
|
|
559
559
|
* call: 'call',
|
|
560
560
|
* chat: 'chat',
|
|
561
561
|
* common: 'common'
|
|
562
|
+
* email: 'email',
|
|
562
563
|
* flow: 'flow',
|
|
563
564
|
* interaction: 'interaction',
|
|
565
|
+
* interaction: 'message',
|
|
566
|
+
* session: 'session',
|
|
564
567
|
* slot: 'slot',
|
|
565
568
|
* state: 'state',
|
|
569
|
+
* survey: 'survey'
|
|
566
570
|
* task: 'task',
|
|
567
571
|
* workflow: 'workflow'
|
|
568
572
|
* }
|