purecloud-flow-scripting-api-sdk-javascript 0.41.0 → 0.41.1
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-scripting/release/scripting.bundle.js +5 -5
- package/package.json +1 -1
- package/src/scripting/documentation/ArchValueAny.html +2 -2
- package/src/scripting/documentation/ArchValueAnyCollection.html +2 -2
- package/src/scripting/documentation/changelog.html +9 -0
- package/src/scripting/documentation/types.d.ts +2 -2
- package/types.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purecloud-flow-scripting-api-sdk-javascript",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.1",
|
|
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",
|
|
@@ -305,7 +305,7 @@ Architect Scripting object.</p>
|
|
|
305
305
|
|
|
306
306
|
<dt>
|
|
307
307
|
<h4 class="name" id=".isArchValueAny">
|
|
308
|
-
<span class="type-signature"><span class="icon green">static</span> </span>isArchValueAny<span class="type-signature"> :
|
|
308
|
+
<span class="type-signature"><span class="icon green">static</span> </span>isArchValueAny<span class="type-signature"> :boolean</span>
|
|
309
309
|
|
|
310
310
|
</h4>
|
|
311
311
|
|
|
@@ -324,7 +324,7 @@ Architect Scripting object.</p>
|
|
|
324
324
|
<ul>
|
|
325
325
|
<li>
|
|
326
326
|
|
|
327
|
-
<span class="param-type">
|
|
327
|
+
<span class="param-type">boolean</span>
|
|
328
328
|
|
|
329
329
|
|
|
330
330
|
</li>
|
|
@@ -974,7 +974,7 @@ An example of an "object" would be an action within a flow.</li>
|
|
|
974
974
|
|
|
975
975
|
<dt>
|
|
976
976
|
<h4 class="name" id="isArchValueAnyCollection">
|
|
977
|
-
<span class="type-signature"><span class="icon green">readonly</span> </span>isArchValueAnyCollection<span class="type-signature"> :
|
|
977
|
+
<span class="type-signature"><span class="icon green">readonly</span> </span>isArchValueAnyCollection<span class="type-signature"> :boolean</span>
|
|
978
978
|
|
|
979
979
|
</h4>
|
|
980
980
|
|
|
@@ -993,7 +993,7 @@ An example of an "object" would be an action within a flow.</li>
|
|
|
993
993
|
<ul>
|
|
994
994
|
<li>
|
|
995
995
|
|
|
996
|
-
<span class="param-type">
|
|
996
|
+
<span class="param-type">boolean</span>
|
|
997
997
|
|
|
998
998
|
|
|
999
999
|
</li>
|
|
@@ -60,6 +60,15 @@
|
|
|
60
60
|
|
|
61
61
|
<section>
|
|
62
62
|
<article class="readme"><h2>Change Log</h2>
|
|
63
|
+
<h1>0.41.1</h1>
|
|
64
|
+
<h4>Improvements</h4>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>We standardized logging behavior when actions are added to a flow.</li>
|
|
67
|
+
</ul>
|
|
68
|
+
<h4>Bug Fixes</h4>
|
|
69
|
+
<ul>
|
|
70
|
+
<li>We fixed an issue where importing an <a href="ArchBaseFlowBot.html"><code>ArchBaseFlowBot</code></a> using <a href="ArchBaseFlow.html#importFromContentAsync"><code>ArchBaseFlow#importFromContentAsync</code></a> or <a href="ArchBaseFlow.html#importFromFileAsync"><code>ArchBaseFlow#importFromFileAsync</code></a> did not import the natural language understanding configuration.</li>
|
|
71
|
+
</ul>
|
|
63
72
|
<h1>0.41.0</h1>
|
|
64
73
|
<h4>Improvements</h4>
|
|
65
74
|
<ul>
|
|
@@ -16846,7 +16846,7 @@ export class ArchValueAny extends ArchBaseValueSingleton {
|
|
|
16846
16846
|
/**
|
|
16847
16847
|
* Returns true indicating that this is an ArchValueAny instance.
|
|
16848
16848
|
*/
|
|
16849
|
-
static isArchValueAny:
|
|
16849
|
+
static isArchValueAny: boolean;
|
|
16850
16850
|
}
|
|
16851
16851
|
|
|
16852
16852
|
/**
|
|
@@ -16866,7 +16866,7 @@ export class ArchValueAnyCollection extends ArchBaseValueCollection {
|
|
|
16866
16866
|
/**
|
|
16867
16867
|
* Returns true indicating that this is an ArchValueAnyCollection instance.
|
|
16868
16868
|
*/
|
|
16869
|
-
readonly isArchValueAnyCollection:
|
|
16869
|
+
readonly isArchValueAnyCollection: boolean;
|
|
16870
16870
|
}
|
|
16871
16871
|
|
|
16872
16872
|
/**
|
package/types.d.ts
CHANGED
|
@@ -16846,7 +16846,7 @@ export class ArchValueAny extends ArchBaseValueSingleton {
|
|
|
16846
16846
|
/**
|
|
16847
16847
|
* Returns true indicating that this is an ArchValueAny instance.
|
|
16848
16848
|
*/
|
|
16849
|
-
static isArchValueAny:
|
|
16849
|
+
static isArchValueAny: boolean;
|
|
16850
16850
|
}
|
|
16851
16851
|
|
|
16852
16852
|
/**
|
|
@@ -16866,7 +16866,7 @@ export class ArchValueAnyCollection extends ArchBaseValueCollection {
|
|
|
16866
16866
|
/**
|
|
16867
16867
|
* Returns true indicating that this is an ArchValueAnyCollection instance.
|
|
16868
16868
|
*/
|
|
16869
|
-
readonly isArchValueAnyCollection:
|
|
16869
|
+
readonly isArchValueAnyCollection: boolean;
|
|
16870
16870
|
}
|
|
16871
16871
|
|
|
16872
16872
|
/**
|