purecloud-flow-scripting-api-sdk-javascript 0.41.0 → 0.41.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.41.0",
3
+ "version": "0.41.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",
@@ -1507,7 +1507,7 @@ is secure or it consumes secure data.</p>
1507
1507
  <dd>
1508
1508
 
1509
1509
  <div class="description">
1510
- <p>The skills collection for this transfer to acd action.</p>
1510
+ <p>The language skill for this transfer to acd action.</p>
1511
1511
  </div>
1512
1512
 
1513
1513
 
@@ -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"> :Any</span>
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">Any</span>
327
+ <span class="param-type">boolean</span>
328
328
 
329
329
 
330
330
  </li>
@@ -974,7 +974,7 @@ An example of an &quot;object&quot; 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"> :Any</span>
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 &quot;object&quot; would be an action within a flow.</li>
993
993
  <ul>
994
994
  <li>
995
995
 
996
- <span class="param-type">Any</span>
996
+ <span class="param-type">boolean</span>
997
997
 
998
998
 
999
999
  </li>
@@ -60,6 +60,24 @@
60
60
 
61
61
  <section>
62
62
  <article class="readme"><h2>Change Log</h2>
63
+ <h1>0.41.2</h1>
64
+ <h4>Improvements</h4>
65
+ <ul>
66
+ <li>We updated YAML export for the <code>ArchActionEvaluateSchedule#evaluationTimeZone</code> property to export a <code>lit</code> or <code>exp</code> property depending on whether the value is literal or expression mode.</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> would not correctly update the Natural Language Understanding configuration.</li>
71
+ </ul>
72
+ <h1>0.41.1</h1>
73
+ <h4>Improvements</h4>
74
+ <ul>
75
+ <li>We standardized logging behavior when actions are added to a flow.</li>
76
+ </ul>
77
+ <h4>Bug Fixes</h4>
78
+ <ul>
79
+ <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>
80
+ </ul>
63
81
  <h1>0.41.0</h1>
64
82
  <h4>Improvements</h4>
65
83
  <ul>
@@ -7840,7 +7840,7 @@ export class ArchActionTransferToAcd extends ArchBaseActionTransfer {
7840
7840
  */
7841
7841
  readonly appendSkills: ArchValueBoolean;
7842
7842
  /**
7843
- * The skills collection for this transfer to acd action.
7843
+ * The language skill for this transfer to acd action.
7844
7844
  */
7845
7845
  readonly languageSkill: ArchValueLanguageSkill;
7846
7846
  /**
@@ -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: any;
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: any;
16869
+ readonly isArchValueAnyCollection: boolean;
16870
16870
  }
16871
16871
 
16872
16872
  /**
package/types.d.ts CHANGED
@@ -7840,7 +7840,7 @@ export class ArchActionTransferToAcd extends ArchBaseActionTransfer {
7840
7840
  */
7841
7841
  readonly appendSkills: ArchValueBoolean;
7842
7842
  /**
7843
- * The skills collection for this transfer to acd action.
7843
+ * The language skill for this transfer to acd action.
7844
7844
  */
7845
7845
  readonly languageSkill: ArchValueLanguageSkill;
7846
7846
  /**
@@ -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: any;
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: any;
16869
+ readonly isArchValueAnyCollection: boolean;
16870
16870
  }
16871
16871
 
16872
16872
  /**