purecloud-flow-scripting-api-sdk-javascript 0.54.5 → 0.54.6
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.54.
|
|
3
|
+
"version": "0.54.6",
|
|
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",
|
|
@@ -60,6 +60,11 @@
|
|
|
60
60
|
|
|
61
61
|
<section>
|
|
62
62
|
<article class="readme"><h2>Change Log</h2>
|
|
63
|
+
<h1>0.54.5</h1>
|
|
64
|
+
<h4>Improvements</h4>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>We made internal stability improvements within Architect Scripting.</li>
|
|
67
|
+
</ul>
|
|
63
68
|
<h1>0.54.4</h1>
|
|
64
69
|
<h4>Improvements</h4>
|
|
65
70
|
<ul>
|
package/types.d.ts
CHANGED
|
@@ -1756,13 +1756,6 @@ export class ArchFactoryActions extends ArchBaseFactory {
|
|
|
1756
1756
|
* @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.
|
|
1757
1757
|
*/
|
|
1758
1758
|
addActionExitBotFlow(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionExitBotFlow;
|
|
1759
|
-
/**
|
|
1760
|
-
* Adds an exit workitem flow action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
|
|
1761
|
-
* @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.
|
|
1762
|
-
* @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.
|
|
1763
|
-
* @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.
|
|
1764
|
-
*/
|
|
1765
|
-
addActionExitWorkitemFlow(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionExitWorkitemFlow;
|
|
1766
1759
|
/**
|
|
1767
1760
|
* Adds a Find Emergency Group action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput} or [task]{@link ArchTask}.
|
|
1768
1761
|
* @param archMultiActionContainer - the Architect multi-action container where the new action should be added. For example, an Architect Scripting task or action output where you want the action added.
|
|
@@ -14392,6 +14385,28 @@ export class ArchBaseActionFindSystemObjectsById extends ArchBaseActionFindSyste
|
|
|
14392
14385
|
readonly findIds: ArchValueStringCollection;
|
|
14393
14386
|
}
|
|
14394
14387
|
|
|
14388
|
+
/**
|
|
14389
|
+
* The base class for actions that find a multiple system object by name.
|
|
14390
|
+
* @param coreFindSystemObjectActionViewModel - ( *Internal* ) an Architect core find system object action view model.
|
|
14391
|
+
*/
|
|
14392
|
+
export class ArchBaseActionFindSystemObjectsByName extends ArchBaseActionFindSystemObject {
|
|
14393
|
+
// constructor(coreFindSystemObjectActionViewModel: any);
|
|
14394
|
+
/**
|
|
14395
|
+
* Returns the display type name string 'ArchBaseActionFindSystemObject'.
|
|
14396
|
+
*/
|
|
14397
|
+
readonly displayTypeName: string;
|
|
14398
|
+
/**
|
|
14399
|
+
* Returns true indicating that this is an ArchBaseActionFindSystemObject instance.
|
|
14400
|
+
*/
|
|
14401
|
+
readonly isArchBaseActionFindSystemObjectsByName: boolean;
|
|
14402
|
+
/**
|
|
14403
|
+
* The names to look up. While the names to look up are always in a string collection, inheriting Find action
|
|
14404
|
+
* classes will provide the context of the names. For example, for the {@link ArchActionFindDivisions} this would be
|
|
14405
|
+
* a string collection of division names of the divisions that you wish to look up at runtime.
|
|
14406
|
+
*/
|
|
14407
|
+
readonly findNames: ArchValueStringCollection;
|
|
14408
|
+
}
|
|
14409
|
+
|
|
14395
14410
|
/**
|
|
14396
14411
|
* Creates a new Architect Flow Outcome base action instance.
|
|
14397
14412
|
* @param coreFlowOutcomeActionViewModel - ( *Internal* ) an Architect core flow outcome action view model.
|