purecloud-flow-scripting-api-sdk-javascript 0.63.0 → 0.63.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,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purecloud-flow-scripting-api-sdk-javascript",
|
|
3
|
-
"version": "0.63.
|
|
3
|
+
"version": "0.63.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",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"websocket": "1.0.35"
|
|
10
|
+
},
|
|
8
11
|
"devDependencies": {
|
|
9
12
|
"axios": "^0.27.2",
|
|
10
13
|
"chai": "4.2.0",
|
package/types.d.ts
CHANGED
|
@@ -6018,6 +6018,16 @@ export class ArchActionCallCommonModule extends ArchBaseAction {
|
|
|
6018
6018
|
* The common module flow set on this action.
|
|
6019
6019
|
*/
|
|
6020
6020
|
readonly commonModuleFlowInfo: ArchFlowInfo;
|
|
6021
|
+
/**
|
|
6022
|
+
* The target common module flow to call for this ArchActionCallCommonModule instance. Note that this function accepts either an {@link ArchFlowInfo} or an {@link ArchFlowInfoBasic}
|
|
6023
|
+
* instance. If the flow information supplied to the setter does not specify a common module flow, it will throw an exception.
|
|
6024
|
+
* The type of common module flow specified must also match the type specified in the action instance's commonModuleFlowTypeEnum property
|
|
6025
|
+
* @param newValue - the {@link ArchFlowInfoBasic} instance of the flow to call for the ArchActionCallCommonModule instance.
|
|
6026
|
+
* @param [callbackFunction] - a callback function to call if the common module flow is successfully
|
|
6027
|
+
* configured on this action. The first parameter passed to the
|
|
6028
|
+
* callback function will be this Architect call common module action instance.
|
|
6029
|
+
*/
|
|
6030
|
+
setTargetFlowInfoAsync(newValue: ArchFlowInfoBasic, callbackFunction?: (...params: any[]) => any): Promise<ArchActionCallCommonModule>;
|
|
6021
6031
|
/**
|
|
6022
6032
|
* This sets the common module flow to call at runtime by the flow identifier and flow version.
|
|
6023
6033
|
* @param commonModuleFlowId - the common module flow identifier.
|
|
@@ -15622,7 +15632,7 @@ export class ArchBaseActionCallBotFlow extends ArchBaseAction {
|
|
|
15622
15632
|
* configured on this action. The first parameter passed to the
|
|
15623
15633
|
* callback function will be this Architect call bot flow action instance.
|
|
15624
15634
|
*/
|
|
15625
|
-
setTargetFlowInfoAsync(newValue: ArchFlowInfoBasic, callbackFunction?: (...params: any[]) => any):
|
|
15635
|
+
setTargetFlowInfoAsync(newValue: ArchFlowInfoBasic, callbackFunction?: (...params: any[]) => any): Promise<ArchBaseActionCallBotFlow>;
|
|
15626
15636
|
}
|
|
15627
15637
|
|
|
15628
15638
|
/**
|