purecloud-flow-scripting-api-sdk-javascript 0.30.0 → 0.31.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purecloud-flow-scripting-api-sdk-javascript",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.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",
|
|
@@ -2630,6 +2630,7 @@ string values.</p>
|
|
|
2630
2630
|
prod_eu_central_1: 'prod_eu_central_1',
|
|
2631
2631
|
prod_eu_west_1: 'prod_eu_west_1',
|
|
2632
2632
|
prod_eu_west_2: 'prod_eu_west_2',
|
|
2633
|
+
prod_sa_east_1: 'prod_sa_east_1',
|
|
2633
2634
|
prod_us_east_1: 'prod_us_east_1',
|
|
2634
2635
|
prod_us_east_2: 'prod_us_east_2',
|
|
2635
2636
|
prod_us_west_2: 'prod_us_west_2'
|
|
@@ -60,6 +60,11 @@
|
|
|
60
60
|
|
|
61
61
|
<section>
|
|
62
62
|
<article class="readme"><h2>Change Log</h2>
|
|
63
|
+
<h1>0.31.0</h1>
|
|
64
|
+
<h4>Miscellaneous</h4>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>We added a new location string value to <a href="ArchEnums.html#LOCATIONS"><code>ArchEnums#LOCATIONS</code></a> to enable usage of Architect Scripting in the Sao Paulo region ('prod_sa_east_1' ).</li>
|
|
67
|
+
</ul>
|
|
63
68
|
<h1>0.30.0</h1>
|
|
64
69
|
<h4>New Features</h4>
|
|
65
70
|
<ul>
|
|
@@ -345,6 +345,7 @@ declare class ArchEnums {
|
|
|
345
345
|
* prod_eu_central_1: 'prod_eu_central_1',
|
|
346
346
|
* prod_eu_west_1: 'prod_eu_west_1',
|
|
347
347
|
* prod_eu_west_2: 'prod_eu_west_2',
|
|
348
|
+
* prod_sa_east_1: 'prod_sa_east_1',
|
|
348
349
|
* prod_us_east_1: 'prod_us_east_1',
|
|
349
350
|
* prod_us_east_2: 'prod_us_east_2',
|
|
350
351
|
* prod_us_west_2: 'prod_us_west_2'
|
package/types.d.ts
CHANGED
|
@@ -345,6 +345,7 @@ declare class ArchEnums {
|
|
|
345
345
|
* prod_eu_central_1: 'prod_eu_central_1',
|
|
346
346
|
* prod_eu_west_1: 'prod_eu_west_1',
|
|
347
347
|
* prod_eu_west_2: 'prod_eu_west_2',
|
|
348
|
+
* prod_sa_east_1: 'prod_sa_east_1',
|
|
348
349
|
* prod_us_east_1: 'prod_us_east_1',
|
|
349
350
|
* prod_us_east_2: 'prod_us_east_2',
|
|
350
351
|
* prod_us_west_2: 'prod_us_west_2'
|