purecloud-flow-scripting-api-sdk-javascript 0.61.0 → 0.61.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 +2 -104
- package/package.json +1 -1
- package/types.d.ts +38 -35
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purecloud-flow-scripting-api-sdk-javascript",
|
|
3
|
-
"version": "0.61.
|
|
3
|
+
"version": "0.61.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",
|
package/types.d.ts
CHANGED
|
@@ -240,7 +240,6 @@ export class ArchDataTypes extends ArchBaseObject {
|
|
|
240
240
|
* array of each of the supported values for a particular enum in this service.
|
|
241
241
|
*/
|
|
242
242
|
export class ArchEnums {
|
|
243
|
-
// constructor();
|
|
244
243
|
/**
|
|
245
244
|
* Returns the display name string of 'ArchEnums'.
|
|
246
245
|
*/
|
|
@@ -399,7 +398,7 @@ export class ArchEnums {
|
|
|
399
398
|
* }
|
|
400
399
|
* ```
|
|
401
400
|
*/
|
|
402
|
-
readonly ERROR_TYPE_DATA_TABLE_VALUES: {"
|
|
401
|
+
readonly ERROR_TYPE_DATA_TABLE_VALUES: {"internalServerError":"DataTablesInternalServerError","serverTooBusyException":"DataTablesServerTooBusyException","syntaxError":"DataTablesSyntaxError","tableNotFoundException":"DataTablesTableNotFoundException"};
|
|
403
402
|
/**
|
|
404
403
|
* Returns a string array that contains all possible data table lookup errorType failure output string values.
|
|
405
404
|
*/
|
|
@@ -454,7 +453,7 @@ export class ArchEnums {
|
|
|
454
453
|
* }
|
|
455
454
|
* ```
|
|
456
455
|
*/
|
|
457
|
-
readonly FILTER_CONTAINER_OPERATORS:
|
|
456
|
+
readonly FILTER_CONTAINER_OPERATORS: {"and":"and","or":"or"};
|
|
458
457
|
/**
|
|
459
458
|
* Returns a string array that contains all valid filter match styles.
|
|
460
459
|
*/
|
|
@@ -468,7 +467,7 @@ export class ArchEnums {
|
|
|
468
467
|
* }
|
|
469
468
|
* ```
|
|
470
469
|
*/
|
|
471
|
-
readonly FLOW_OUTCOMES:
|
|
470
|
+
readonly FLOW_OUTCOMES: {"success":"SUCCESS","failure":"FAILURE"};
|
|
472
471
|
/**
|
|
473
472
|
* Returns a string array that contains all valid flow outcome values for the Set Flow Outcome actions.
|
|
474
473
|
*/
|
|
@@ -672,10 +671,6 @@ export class ArchEnums {
|
|
|
672
671
|
* ```
|
|
673
672
|
*/
|
|
674
673
|
readonly STRING_BODY_HANDLING_TYPES: {"convertToHtml":"convertToHtml","convertToMarkdown":"convertToMarkdown","none":"none","removeAllFormatting":"removeAllFormatting"};
|
|
675
|
-
/**
|
|
676
|
-
* Returns a string array that contains all valid response body handling types.
|
|
677
|
-
*/
|
|
678
|
-
readonly STRING_BODY_HANDLING_TYPES_ALL: string[];
|
|
679
674
|
/**
|
|
680
675
|
* Returns a JSON object with these properties whose values can be used for natural language
|
|
681
676
|
* understanding response modes.
|
|
@@ -938,7 +933,7 @@ export class ArchEnums {
|
|
|
938
933
|
/**
|
|
939
934
|
* Returns a string array that contains all whose values are valid for a SetUUIData Action
|
|
940
935
|
*/
|
|
941
|
-
readonly SET_UUI_DATA_MODES_ALL:
|
|
936
|
+
readonly SET_UUI_DATA_MODES_ALL: string[];
|
|
942
937
|
/**
|
|
943
938
|
* Returns a JSON object with these properties whose values are valid switch action evaluation style strings:
|
|
944
939
|
* ```
|
|
@@ -1074,10 +1069,6 @@ export class ArchOrganizationInfo extends ArchBaseObject {
|
|
|
1074
1069
|
* Returns true indicating that this is an ArchOrganizationInfo instance.
|
|
1075
1070
|
*/
|
|
1076
1071
|
readonly isArchOrganizationInfo: boolean;
|
|
1077
|
-
/**
|
|
1078
|
-
* Returns true indicating that agentic virtual agent is available for this ArchOrganizationInfo instance.
|
|
1079
|
-
*/
|
|
1080
|
-
readonly agenticVirtualAgentAvailable: boolean;
|
|
1081
1072
|
/**
|
|
1082
1073
|
* Returns true indicating that virtual agent is available for this ArchOrganizationInfo instance.
|
|
1083
1074
|
*/
|
|
@@ -2537,6 +2528,13 @@ export class ArchFactoryActions extends ArchBaseFactory {
|
|
|
2537
2528
|
* @param [previousArchAction] - the previous Architect action in the task, state or action output where the new action should be added. If undefined, the new action will be appended to the task, state or action output.
|
|
2538
2529
|
*/
|
|
2539
2530
|
addActionAskSurveyQuestion(archMultiActionContainer: ArchTask | ArchState | ArchActionOutput, name?: string, previousArchAction?: ArchBaseAction): ArchActionAskSurveyQuestion;
|
|
2531
|
+
/**
|
|
2532
|
+
* Adds a Call Agentic Virtual Agent action to a task, state or action output.
|
|
2533
|
+
* @param archMultiActionContainer - the Architect task, state or action output where the new action should be added.
|
|
2534
|
+
* @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.
|
|
2535
|
+
* @param [previousArchAction] - the previous Architect action in the task, state or action output where the new action should be added. If undefined, the new action will be appended to the task, state or action output.
|
|
2536
|
+
*/
|
|
2537
|
+
addActionCallAgenticVirtualAgent(archMultiActionContainer: ArchTask | ArchState | ArchActionOutput, name?: string, previousArchAction?: ArchBaseAction): ArchActionCallAgenticVirtualAgent;
|
|
2540
2538
|
/**
|
|
2541
2539
|
* Adds an Audio Monitoring action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput} or [task]{@link ArchTask}.
|
|
2542
2540
|
* @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.
|
|
@@ -16943,7 +16941,7 @@ export class ArchBaseFlow extends ArchBaseCoreObjectWithId {
|
|
|
16943
16941
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
16944
16942
|
* @param callbackFunction - the function to call back with the export information contained
|
|
16945
16943
|
* in the parameter passed to it.
|
|
16946
|
-
* @param [flowFormat =
|
|
16944
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
16947
16945
|
* it will default to the Architect format.
|
|
16948
16946
|
*/
|
|
16949
16947
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -17314,7 +17312,7 @@ export class ArchBaseFlowBotWithKnowledge extends ArchBaseFlowBot {
|
|
|
17314
17312
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
17315
17313
|
* @param callbackFunction - the function to call back with the export information contained
|
|
17316
17314
|
* in the parameter passed to it.
|
|
17317
|
-
* @param [flowFormat =
|
|
17315
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
17318
17316
|
* it will default to the Architect format.
|
|
17319
17317
|
*/
|
|
17320
17318
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -20018,7 +20016,7 @@ export class ArchFlowBot extends ArchBaseFlowBotWithKnowledge {
|
|
|
20018
20016
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
20019
20017
|
* @param callbackFunction - the function to call back with the export information contained
|
|
20020
20018
|
* in the parameter passed to it.
|
|
20021
|
-
* @param [flowFormat =
|
|
20019
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
20022
20020
|
* it will default to the Architect format.
|
|
20023
20021
|
*/
|
|
20024
20022
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -20442,7 +20440,7 @@ export class ArchFlowCommonModule extends ArchBaseFlow {
|
|
|
20442
20440
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
20443
20441
|
* @param callbackFunction - the function to call back with the export information contained
|
|
20444
20442
|
* in the parameter passed to it.
|
|
20445
|
-
* @param [flowFormat =
|
|
20443
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
20446
20444
|
* it will default to the Architect format.
|
|
20447
20445
|
*/
|
|
20448
20446
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -20917,7 +20915,7 @@ export class ArchFlowDigitalBot extends ArchBaseFlowBotWithKnowledge {
|
|
|
20917
20915
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
20918
20916
|
* @param callbackFunction - the function to call back with the export information contained
|
|
20919
20917
|
* in the parameter passed to it.
|
|
20920
|
-
* @param [flowFormat =
|
|
20918
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
20921
20919
|
* it will default to the Architect format.
|
|
20922
20920
|
*/
|
|
20923
20921
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -21340,7 +21338,7 @@ export class ArchFlowInQueueCall extends ArchBaseFlow {
|
|
|
21340
21338
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
21341
21339
|
* @param callbackFunction - the function to call back with the export information contained
|
|
21342
21340
|
* in the parameter passed to it.
|
|
21343
|
-
* @param [flowFormat =
|
|
21341
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
21344
21342
|
* it will default to the Architect format.
|
|
21345
21343
|
*/
|
|
21346
21344
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -21784,7 +21782,7 @@ export class ArchFlowInQueueEmail extends ArchBaseFlowWorkflow {
|
|
|
21784
21782
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
21785
21783
|
* @param callbackFunction - the function to call back with the export information contained
|
|
21786
21784
|
* in the parameter passed to it.
|
|
21787
|
-
* @param [flowFormat =
|
|
21785
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
21788
21786
|
* it will default to the Architect format.
|
|
21789
21787
|
*/
|
|
21790
21788
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -22228,7 +22226,7 @@ export class ArchFlowInQueueShortMessage extends ArchBaseFlowWorkflow {
|
|
|
22228
22226
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
22229
22227
|
* @param callbackFunction - the function to call back with the export information contained
|
|
22230
22228
|
* in the parameter passed to it.
|
|
22231
|
-
* @param [flowFormat =
|
|
22229
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
22232
22230
|
* it will default to the Architect format.
|
|
22233
22231
|
*/
|
|
22234
22232
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -22698,7 +22696,7 @@ export class ArchFlowInboundCall extends ArchBaseFlowInboundOutboundSecureCall {
|
|
|
22698
22696
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
22699
22697
|
* @param callbackFunction - the function to call back with the export information contained
|
|
22700
22698
|
* in the parameter passed to it.
|
|
22701
|
-
* @param [flowFormat =
|
|
22699
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
22702
22700
|
* it will default to the Architect format.
|
|
22703
22701
|
*/
|
|
22704
22702
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -23142,7 +23140,7 @@ export class ArchFlowInboundChat extends ArchBaseFlowWorkflow {
|
|
|
23142
23140
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
23143
23141
|
* @param callbackFunction - the function to call back with the export information contained
|
|
23144
23142
|
* in the parameter passed to it.
|
|
23145
|
-
* @param [flowFormat =
|
|
23143
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
23146
23144
|
* it will default to the Architect format.
|
|
23147
23145
|
*/
|
|
23148
23146
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -23594,7 +23592,7 @@ export class ArchFlowInboundEmail extends ArchBaseFlowWorkflow {
|
|
|
23594
23592
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
23595
23593
|
* @param callbackFunction - the function to call back with the export information contained
|
|
23596
23594
|
* in the parameter passed to it.
|
|
23597
|
-
* @param [flowFormat =
|
|
23595
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
23598
23596
|
* it will default to the Architect format.
|
|
23599
23597
|
*/
|
|
23600
23598
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -24038,7 +24036,7 @@ export class ArchFlowInboundShortMessage extends ArchBaseFlowWorkflow {
|
|
|
24038
24036
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
24039
24037
|
* @param callbackFunction - the function to call back with the export information contained
|
|
24040
24038
|
* in the parameter passed to it.
|
|
24041
|
-
* @param [flowFormat =
|
|
24039
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
24042
24040
|
* it will default to the Architect format.
|
|
24043
24041
|
*/
|
|
24044
24042
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -24855,7 +24853,7 @@ export class ArchFlowOutboundCall extends ArchBaseFlowInboundOutboundSecureCall
|
|
|
24855
24853
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
24856
24854
|
* @param callbackFunction - the function to call back with the export information contained
|
|
24857
24855
|
* in the parameter passed to it.
|
|
24858
|
-
* @param [flowFormat =
|
|
24856
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
24859
24857
|
* it will default to the Architect format.
|
|
24860
24858
|
*/
|
|
24861
24859
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -25325,7 +25323,7 @@ export class ArchFlowSecureCall extends ArchBaseFlowInboundOutboundSecureCall {
|
|
|
25325
25323
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
25326
25324
|
* @param callbackFunction - the function to call back with the export information contained
|
|
25327
25325
|
* in the parameter passed to it.
|
|
25328
|
-
* @param [flowFormat =
|
|
25326
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
25329
25327
|
* it will default to the Architect format.
|
|
25330
25328
|
*/
|
|
25331
25329
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -25769,7 +25767,7 @@ export class ArchFlowSurveyInvite extends ArchBaseFlowWorkflow {
|
|
|
25769
25767
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
25770
25768
|
* @param callbackFunction - the function to call back with the export information contained
|
|
25771
25769
|
* in the parameter passed to it.
|
|
25772
|
-
* @param [flowFormat =
|
|
25770
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
25773
25771
|
* it will default to the Architect format.
|
|
25774
25772
|
*/
|
|
25775
25773
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -26239,7 +26237,7 @@ export class ArchFlowVoiceSurvey extends ArchBaseFlowBot {
|
|
|
26239
26237
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
26240
26238
|
* @param callbackFunction - the function to call back with the export information contained
|
|
26241
26239
|
* in the parameter passed to it.
|
|
26242
|
-
* @param [flowFormat =
|
|
26240
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
26243
26241
|
* it will default to the Architect format.
|
|
26244
26242
|
*/
|
|
26245
26243
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -26705,7 +26703,7 @@ export class ArchFlowVoicemail extends ArchBaseFlowInboundOutboundSecureCall {
|
|
|
26705
26703
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
26706
26704
|
* @param callbackFunction - the function to call back with the export information contained
|
|
26707
26705
|
* in the parameter passed to it.
|
|
26708
|
-
* @param [flowFormat =
|
|
26706
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
26709
26707
|
* it will default to the Architect format.
|
|
26710
26708
|
*/
|
|
26711
26709
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -27149,7 +27147,7 @@ export class ArchFlowWorkflow extends ArchBaseFlowWorkflow {
|
|
|
27149
27147
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
27150
27148
|
* @param callbackFunction - the function to call back with the export information contained
|
|
27151
27149
|
* in the parameter passed to it.
|
|
27152
|
-
* @param [flowFormat =
|
|
27150
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
27153
27151
|
* it will default to the Architect format.
|
|
27154
27152
|
*/
|
|
27155
27153
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -27597,7 +27595,7 @@ export class ArchFlowWorkitem extends ArchBaseFlowWorkflow {
|
|
|
27597
27595
|
* export would be written if {@link ArchBaseFlow#exportToDirAsync} is called.
|
|
27598
27596
|
* @param callbackFunction - the function to call back with the export information contained
|
|
27599
27597
|
* in the parameter passed to it.
|
|
27600
|
-
* @param [flowFormat =
|
|
27598
|
+
* @param [flowFormat = archEnums.FLOW_FORMAT_TYPES.architect] - the desired export format to use on an export. See {@link ArchEnums#FLOW_FORMAT_TYPES} for allowable export formats. If no format is used,
|
|
27601
27599
|
* it will default to the Architect format.
|
|
27602
27600
|
*/
|
|
27603
27601
|
exportToObjectAsync(callbackFunction: callbackExportObject, flowFormat?: string): Promise<any>;
|
|
@@ -29019,7 +29017,9 @@ export class ArchSettingsBotFlow extends ArchBaseCoreObjectWithId {
|
|
|
29019
29017
|
virtualAgentEnabled: boolean;
|
|
29020
29018
|
/**
|
|
29021
29019
|
* Returns true if Agentic Virtual Agent functionality is enabled for this flow, otherwise false.
|
|
29022
|
-
* This property is automatically set to true when the flow contains Call Guide actions
|
|
29020
|
+
* This property is automatically set to true when the flow contains Call Guide actions (legacy behavior).
|
|
29021
|
+
* TODO: Add support for Call Agentic Virtual Agent actions
|
|
29022
|
+
* Once set to true, it cannot be set back to false.
|
|
29023
29023
|
* To downgrade from an agentic flow back to non-agentic (va flow), you must revert to a previous flow version.
|
|
29024
29024
|
*/
|
|
29025
29025
|
readonly agenticVirtualAgentEnabled: boolean;
|
|
@@ -31012,7 +31012,9 @@ export class ArchSettingsVoiceSurveyFlow extends ArchSettingsBotFlow {
|
|
|
31012
31012
|
virtualAgentEnabled: boolean;
|
|
31013
31013
|
/**
|
|
31014
31014
|
* Returns true if Agentic Virtual Agent functionality is enabled for this flow, otherwise false.
|
|
31015
|
-
* This property is automatically set to true when the flow contains Call Guide actions
|
|
31015
|
+
* This property is automatically set to true when the flow contains Call Guide actions (legacy behavior).
|
|
31016
|
+
* TODO: Add support for Call Agentic Virtual Agent actions
|
|
31017
|
+
* Once set to true, it cannot be set back to false.
|
|
31016
31018
|
* To downgrade from an agentic flow back to non-agentic (va flow), you must revert to a previous flow version.
|
|
31017
31019
|
*/
|
|
31018
31020
|
readonly agenticVirtualAgentEnabled: boolean;
|
|
@@ -51944,8 +51946,9 @@ export class ArchValueListPicker extends ArchBaseValueWithAssignableProperties {
|
|
|
51944
51946
|
* @param receivedMessageSubtitle - the receivedMessageSubtitle of the listPicker
|
|
51945
51947
|
* @param replyMessageImage - the name of the replyMessageImage
|
|
51946
51948
|
* @param replyMessageSubtitle - the replyMessageSubtitle of the listPicker
|
|
51949
|
+
* @param receivedMessageButtonText - the receivedMessageButtonText of the listPicker
|
|
51947
51950
|
*/
|
|
51948
|
-
setLiteralListPicker(sections: ArchValueListPickerSectionCollection, receivedMessageImage: string, receivedMessageTitle: string, receivedMessageSubtitle: string, replyMessageImage: string, replyMessageSubtitle: string): void;
|
|
51951
|
+
setLiteralListPicker(sections: ArchValueListPickerSectionCollection, receivedMessageImage: string, receivedMessageTitle: string, receivedMessageSubtitle: string, replyMessageImage: string, replyMessageSubtitle: string, receivedMessageButtonText: string): void;
|
|
51949
51952
|
/**
|
|
51950
51953
|
* Sets the value to a literal value.
|
|
51951
51954
|
*/
|