purecloud-flow-scripting-api-sdk-javascript 0.63.7 → 0.63.9

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/types.d.ts CHANGED
@@ -352,7 +352,7 @@ export class ArchEnums {
352
352
  * }
353
353
  * ```
354
354
  */
355
- readonly CUSTOM_JSON_TYPE_NAMESPACES: {"architect":"architect","decisionTable":"decisionTable","userDefined":"userDefined","worktype":"worktype"};
355
+ readonly CUSTOM_JSON_TYPE_NAMESPACES: {"architect":"architect","conversationAttribute":"conversationAttribute","decisionTable":"decisionTable","userDefined":"userDefined","worktype":"worktype"};
356
356
  /**
357
357
  * Returns a string array that contains all valid custom JSON type namespaces.
358
358
  */
@@ -1969,6 +1969,13 @@ export class ArchFactoryActions extends ArchBaseFactory {
1969
1969
  * @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.
1970
1970
  */
1971
1971
  addActionExitBotFlow(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionExitBotFlow;
1972
+ /**
1973
+ * Adds an exit workitem flow action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput}, [task]{@link ArchTask} or [state]{@link ArchState}.
1974
+ * @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.
1975
+ * @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.
1976
+ * @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.
1977
+ */
1978
+ addActionExitWorkitemFlow(archMultiActionContainer: ArchBaseMultiActionContainer, name?: string, previousArchAction?: ArchBaseAction): ArchActionExitWorkitemFlow;
1972
1979
  /**
1973
1980
  * Adds a Find Emergency Group action to an {@link ArchBaseMultiActionContainer} such as an [action output]{@link ArchActionOutput} or [task]{@link ArchTask}.
1974
1981
  * @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.
@@ -12842,6 +12849,14 @@ export class ArchActionSendAutoReply extends ArchBaseActionWithOutputsSuccessFai
12842
12849
  setMessageBodyVariable(messageBodyVariable: string | ArchVariableString): void;
12843
12850
  }
12844
12851
 
12852
+ /**
12853
+ * Creates an instance of ArchActionSendDigitalCarousel.
12854
+ * @param coreActionViewModel - the core Send Digital Carousel action view model.
12855
+ */
12856
+ export class ArchActionSendDigitalCarousel {
12857
+ // constructor(coreActionViewModel: any);
12858
+ }
12859
+
12845
12860
  /**
12846
12861
  * The Architect Scripting class for the Send Interactive Application action
12847
12862
  * Instances of this action should be created by calling {@link ArchFactoryActions#addActionSendInteractiveApplication}
@@ -22091,6 +22106,10 @@ export class ArchBaseNetworkValueCollection extends ArchBaseNetworkValue {
22091
22106
  * this ArchBaseValueBasicCollection instance overall.
22092
22107
  */
22093
22108
  readonly valueText: string | string[];
22109
+ /**
22110
+ * Sets the collection literal mode with no items configured.
22111
+ */
22112
+ setLiteralEmptyCollection(): void;
22094
22113
  /**
22095
22114
  * Returns whether or not this value uses secure data. For this to be the case, the
22096
22115
  * value must use a secure variable either in an expression or as the configured variable.
@@ -24557,6 +24576,10 @@ export class ArchBaseValueCollection extends ArchBaseValue {
24557
24576
  * Returns true indicating that this object is a collection.
24558
24577
  */
24559
24578
  readonly isCollection: boolean;
24579
+ /**
24580
+ * Sets the collection literal mode with no items configured.
24581
+ */
24582
+ setLiteralEmptyCollection(): void;
24560
24583
  /**
24561
24584
  * Returns whether or not this value uses secure data. For this to be the case, the
24562
24585
  * value must use a secure variable either in an expression or as the configured variable.
@@ -24920,6 +24943,10 @@ export class ArchBaseValueCollectionBasic extends ArchBaseValueCollection {
24920
24943
  * Returns true indicating that this object is a collection.
24921
24944
  */
24922
24945
  readonly isCollection: boolean;
24946
+ /**
24947
+ * Sets the collection literal mode with no items configured.
24948
+ */
24949
+ setLiteralEmptyCollection(): void;
24923
24950
  /**
24924
24951
  * Returns whether or not this value uses secure data. For this to be the case, the
24925
24952
  * value must use a secure variable either in an expression or as the configured variable.
@@ -40348,16 +40375,16 @@ export class ArchValidationResults extends ArchBaseCoreObject {
40348
40375
  */
40349
40376
  getSummaryStr(wantDetails: boolean, addLogStr?: boolean, prefix?: string): string;
40350
40377
  /**
40351
- * Returns true is there are any validation issues with errors in these results, otherwise false.
40378
+ * Returns true if there are any validation issues with errors in these results, otherwise false.
40352
40379
  */
40353
40380
  readonly hasErrors: boolean;
40354
40381
  /**
40355
- * Returns true is there are no validation issues with errors or rollup errors in this validation
40382
+ * Returns true if there are no validation issues with errors or rollup errors in this validation
40356
40383
  * results instance, otherwise false.
40357
40384
  */
40358
40385
  readonly hasNoErrors: boolean;
40359
40386
  /**
40360
- * Returns true is there are any validation issues with errors, rollup errors, warnings or rollup warnings in
40387
+ * Returns true if there are any validation issues with errors, rollup errors, warnings or rollup warnings in
40361
40388
  * these results, otherwise false.
40362
40389
  */
40363
40390
  readonly hasErrorsOrWarnings: boolean;
@@ -40366,35 +40393,47 @@ export class ArchValidationResults extends ArchBaseCoreObject {
40366
40393
  */
40367
40394
  readonly hasNoErrorsOrWarnings: boolean;
40368
40395
  /**
40369
- * Returns true is there are any validation issues with warnings or rollup warnings in these results, otherwise false.
40396
+ * Returns true if there are any validation issues with warnings or rollup warnings in these results, otherwise false.
40370
40397
  */
40371
40398
  readonly hasWarnings: boolean;
40372
40399
  /**
40373
- * Returns true is there are no validation issues with warnings or rollup warnings in this validation
40400
+ * Returns true if there are no validation issues with warnings or rollup warnings in this validation
40374
40401
  * results instance, otherwise false.
40375
40402
  */
40376
40403
  readonly hasNoWarnings: boolean;
40377
40404
  /**
40378
- * Returns number of errors the object has
40405
+ * Returns number of validation errors the object has.
40379
40406
  * @param archObjectWithId - the Architect Scripting object to check.
40380
40407
  */
40381
40408
  objectErrorCount(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40382
40409
  /**
40383
- * Returns whether or not the supplied Architect Scripting object has an error or rollup error that matches
40410
+ * Returns number of validation warnings the object has.
40411
+ * @param archObjectWithId - the Architect Scripting object to check.
40412
+ */
40413
+ objectWarningCount(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40414
+ /**
40415
+ * Returns whether the supplied Architect Scripting object has an error or rollup error that matches
40384
40416
  * the supplied error string.
40385
40417
  * @param archObjectWithId - the Architect Scripting object to check.
40386
40418
  * @param errorString - the error string to look up. This must be a non-blank string.
40387
40419
  */
40388
40420
  objectHasErrorString(archObjectWithId: ArchBaseCoreObjectWithId, errorString: string): boolean;
40389
40421
  /**
40390
- * Returns true if the the supplied Architect Scripting object has an error or rollup error in this set of validation
40422
+ * Returns true if the supplied Architect Scripting object has an error or rollup error in this set of validation
40391
40423
  * results. This method looks up a validation issue for the specified Architect base object and if found will check
40392
40424
  * to see if the error or rollup error count are greater than 0.
40393
40425
  * @param archObjectWithId - the Architect Scripting object to check.
40394
40426
  */
40395
40427
  objectHasErrors(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40396
40428
  /**
40397
- * Returns whether or not the supplied Architect Scripting object has no errors or rollup errors
40429
+ * Returns true if the supplied Architect Scripting object has a warning or rollup warning in this set of validation
40430
+ * results. This method looks up a validation issue for the specified Architect base object and if found will check
40431
+ * to see if the warning or rollup warning count are greater than 0.
40432
+ * @param archObjectWithId - the Architect Scripting object to check.
40433
+ */
40434
+ objectHasWarnings(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40435
+ /**
40436
+ * Returns whether the supplied Architect Scripting object has no errors or rollup errors
40398
40437
  * in this set of validation results. This method looks up a validation issue for the specified Architect
40399
40438
  * base object and if found will check to make sure that the validation issue's error count and rollup
40400
40439
  * error count are equal to 0.
@@ -40402,7 +40441,7 @@ export class ArchValidationResults extends ArchBaseCoreObject {
40402
40441
  */
40403
40442
  objectHasNoErrors(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40404
40443
  /**
40405
- * Returns true if the the supplied Architect Scripting object has an error, rollup error, warning or
40444
+ * Returns true if the supplied Architect Scripting object has an error, rollup error, warning or
40406
40445
  * rollup warning in this set of validation results. This method looks up a validation issue for the specified
40407
40446
  * Architect base object and if found will check to see if the error, rollup error, warning or rollup warning
40408
40447
  * count are greater than 0.
@@ -40410,7 +40449,7 @@ export class ArchValidationResults extends ArchBaseCoreObject {
40410
40449
  */
40411
40450
  objectHasErrorsOrWarnings(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40412
40451
  /**
40413
- * Returns true if the the supplied Architect Scripting object has no errors, rollup errors, warnings or
40452
+ * Returns true if the supplied Architect Scripting object has no errors, rollup errors, warnings or
40414
40453
  * rollup warnings in this set of validation results. This method looks up a validation issue for the specified
40415
40454
  * Architect base object and if found will check to make sure that the validation issue's error, rollup error, warning
40416
40455
  * and rollup warning counts are 0.
@@ -40418,7 +40457,7 @@ export class ArchValidationResults extends ArchBaseCoreObject {
40418
40457
  */
40419
40458
  objectHasNoErrorsOrWarnings(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40420
40459
  /**
40421
- * Returns whether or not the supplied Architect Scripting object has no warnings or rollup warnings
40460
+ * Returns whether the supplied Architect Scripting object has no warnings or rollup warnings
40422
40461
  * in this set of validation results. This method looks up a validation issue for the specified Architect
40423
40462
  * base object and if found will check to make sure that the validation issue's warning count and rollup
40424
40463
  * warning count are equal to 0.
@@ -40426,7 +40465,7 @@ export class ArchValidationResults extends ArchBaseCoreObject {
40426
40465
  */
40427
40466
  objectHasNoWarnings(archObjectWithId: ArchBaseCoreObjectWithId): boolean;
40428
40467
  /**
40429
- * Returns whether or not the supplied Architect Scripting object has a warning or rollup warning that matches
40468
+ * Returns whether the supplied Architect Scripting object has a warning or rollup warning that matches
40430
40469
  * the supplied warning string.
40431
40470
  * @param archObjectWithId - the Architect Scripting object to check.
40432
40471
  * @param warningString - the warning string to look up. This must be a non-blank string.
@@ -41603,6 +41642,10 @@ export class ArchValueAgentScorePairCollection extends ArchBaseValueCollection {
41603
41642
  * Returns true indicating that this object is a collection.
41604
41643
  */
41605
41644
  readonly isCollection: boolean;
41645
+ /**
41646
+ * Sets the collection literal mode with no items configured.
41647
+ */
41648
+ setLiteralEmptyCollection(): void;
41606
41649
  /**
41607
41650
  * Returns whether or not this value uses secure data. For this to be the case, the
41608
41651
  * value must use a secure variable either in an expression or as the configured variable.
@@ -42287,6 +42330,10 @@ export class ArchValueAnyCollection extends ArchBaseValueCollection {
42287
42330
  * Returns true indicating that this object is a collection.
42288
42331
  */
42289
42332
  readonly isCollection: boolean;
42333
+ /**
42334
+ * Sets the collection literal mode with no items configured.
42335
+ */
42336
+ setLiteralEmptyCollection(): void;
42290
42337
  /**
42291
42338
  * Returns whether or not this value uses secure data. For this to be the case, the
42292
42339
  * value must use a secure variable either in an expression or as the configured variable.
@@ -43340,6 +43387,10 @@ export class ArchValueBooleanCollection extends ArchBaseValueCollectionBasic {
43340
43387
  * Returns true indicating that this object is a collection.
43341
43388
  */
43342
43389
  readonly isCollection: boolean;
43390
+ /**
43391
+ * Sets the collection literal mode with no items configured.
43392
+ */
43393
+ setLiteralEmptyCollection(): void;
43343
43394
  /**
43344
43395
  * Returns whether or not this value uses secure data. For this to be the case, the
43345
43396
  * value must use a secure variable either in an expression or as the configured variable.
@@ -44037,6 +44088,10 @@ export class ArchValueCardCollection extends ArchBaseValueCollection {
44037
44088
  * Returns true indicating that this object is a collection.
44038
44089
  */
44039
44090
  readonly isCollection: boolean;
44091
+ /**
44092
+ * Sets the collection literal mode with no items configured.
44093
+ */
44094
+ setLiteralEmptyCollection(): void;
44040
44095
  /**
44041
44096
  * Returns whether or not this value uses secure data. For this to be the case, the
44042
44097
  * value must use a secure variable either in an expression or as the configured variable.
@@ -45115,6 +45170,10 @@ export class ArchValueChoiceCollection extends ArchBaseValueCollection {
45115
45170
  * Returns true indicating that this object is a collection.
45116
45171
  */
45117
45172
  readonly isCollection: boolean;
45173
+ /**
45174
+ * Sets the collection literal mode with no items configured.
45175
+ */
45176
+ setLiteralEmptyCollection(): void;
45118
45177
  /**
45119
45178
  * Returns whether or not this value uses secure data. For this to be the case, the
45120
45179
  * value must use a secure variable either in an expression or as the configured variable.
@@ -45855,6 +45914,10 @@ export class ArchValueCommunicationCollection extends ArchBaseValueCollectionBas
45855
45914
  * Returns true indicating that this object is a collection.
45856
45915
  */
45857
45916
  readonly isCollection: boolean;
45917
+ /**
45918
+ * Sets the collection literal mode with no items configured.
45919
+ */
45920
+ setLiteralEmptyCollection(): void;
45858
45921
  /**
45859
45922
  * Returns whether or not this value uses secure data. For this to be the case, the
45860
45923
  * value must use a secure variable either in an expression or as the configured variable.
@@ -46908,6 +46971,10 @@ export class ArchValueCurrencyCollection extends ArchBaseValueCollectionBasic {
46908
46971
  * Returns true indicating that this object is a collection.
46909
46972
  */
46910
46973
  readonly isCollection: boolean;
46974
+ /**
46975
+ * Sets the collection literal mode with no items configured.
46976
+ */
46977
+ setLiteralEmptyCollection(): void;
46911
46978
  /**
46912
46979
  * Returns whether or not this value uses secure data. For this to be the case, the
46913
46980
  * value must use a secure variable either in an expression or as the configured variable.
@@ -47611,6 +47678,10 @@ export class ArchValueDateCollection extends ArchBaseValueCollectionBasic {
47611
47678
  * Returns true indicating that this object is a collection.
47612
47679
  */
47613
47680
  readonly isCollection: boolean;
47681
+ /**
47682
+ * Sets the collection literal mode with no items configured.
47683
+ */
47684
+ setLiteralEmptyCollection(): void;
47614
47685
  /**
47615
47686
  * Returns whether or not this value uses secure data. For this to be the case, the
47616
47687
  * value must use a secure variable either in an expression or as the configured variable.
@@ -48326,6 +48397,10 @@ export class ArchValueDateTimeCollection extends ArchBaseValueCollectionBasic {
48326
48397
  * Returns true indicating that this object is a collection.
48327
48398
  */
48328
48399
  readonly isCollection: boolean;
48400
+ /**
48401
+ * Sets the collection literal mode with no items configured.
48402
+ */
48403
+ setLiteralEmptyCollection(): void;
48329
48404
  /**
48330
48405
  * Returns whether or not this value uses secure data. For this to be the case, the
48331
48406
  * value must use a secure variable either in an expression or as the configured variable.
@@ -49030,6 +49105,10 @@ export class ArchValueDecimalCollection extends ArchBaseValueCollectionBasic {
49030
49105
  * Returns true indicating that this object is a collection.
49031
49106
  */
49032
49107
  readonly isCollection: boolean;
49108
+ /**
49109
+ * Sets the collection literal mode with no items configured.
49110
+ */
49111
+ setLiteralEmptyCollection(): void;
49033
49112
  /**
49034
49113
  * Returns whether or not this value uses secure data. For this to be the case, the
49035
49114
  * value must use a secure variable either in an expression or as the configured variable.
@@ -49742,6 +49821,10 @@ export class ArchValueDurationCollection extends ArchBaseValueCollectionBasic {
49742
49821
  * Returns true indicating that this object is a collection.
49743
49822
  */
49744
49823
  readonly isCollection: boolean;
49824
+ /**
49825
+ * Sets the collection literal mode with no items configured.
49826
+ */
49827
+ setLiteralEmptyCollection(): void;
49745
49828
  /**
49746
49829
  * Returns whether or not this value uses secure data. For this to be the case, the
49747
49830
  * value must use a secure variable either in an expression or as the configured variable.
@@ -50419,6 +50502,10 @@ export class ArchValueEmailAddressCollection extends ArchBaseValueCollection {
50419
50502
  * Returns true indicating that this object is a collection.
50420
50503
  */
50421
50504
  readonly isCollection: boolean;
50505
+ /**
50506
+ * Sets the collection literal mode with no items configured.
50507
+ */
50508
+ setLiteralEmptyCollection(): void;
50422
50509
  /**
50423
50510
  * Returns whether or not this value uses secure data. For this to be the case, the
50424
50511
  * value must use a secure variable either in an expression or as the configured variable.
@@ -51161,6 +51248,10 @@ export class ArchValueEmergencyGroupCollection extends ArchBaseNetworkValueColle
51161
51248
  * this ArchBaseValueBasicCollection instance overall.
51162
51249
  */
51163
51250
  readonly valueText: string | string[];
51251
+ /**
51252
+ * Sets the collection literal mode with no items configured.
51253
+ */
51254
+ setLiteralEmptyCollection(): void;
51164
51255
  /**
51165
51256
  * Returns whether or not this value uses secure data. For this to be the case, the
51166
51257
  * value must use a secure variable either in an expression or as the configured variable.
@@ -51838,6 +51929,10 @@ export class ArchValueExternalContactCollection extends ArchBaseValueCollection
51838
51929
  * Returns true indicating that this object is a collection.
51839
51930
  */
51840
51931
  readonly isCollection: boolean;
51932
+ /**
51933
+ * Sets the collection literal mode with no items configured.
51934
+ */
51935
+ setLiteralEmptyCollection(): void;
51841
51936
  /**
51842
51937
  * Returns whether or not this value uses secure data. For this to be the case, the
51843
51938
  * value must use a secure variable either in an expression or as the configured variable.
@@ -52521,6 +52616,10 @@ export class ArchValueExternalOrganizationCollection extends ArchBaseValueCollec
52521
52616
  * Returns true indicating that this object is a collection.
52522
52617
  */
52523
52618
  readonly isCollection: boolean;
52619
+ /**
52620
+ * Sets the collection literal mode with no items configured.
52621
+ */
52622
+ setLiteralEmptyCollection(): void;
52524
52623
  /**
52525
52624
  * Returns whether or not this value uses secure data. For this to be the case, the
52526
52625
  * value must use a secure variable either in an expression or as the configured variable.
@@ -53267,6 +53366,10 @@ export class ArchValueGrammarCollection extends ArchBaseNetworkValueCollection {
53267
53366
  * this ArchBaseValueBasicCollection instance overall.
53268
53367
  */
53269
53368
  readonly valueText: string | string[];
53369
+ /**
53370
+ * Sets the collection literal mode with no items configured.
53371
+ */
53372
+ setLiteralEmptyCollection(): void;
53270
53373
  /**
53271
53374
  * Returns whether or not this value uses secure data. For this to be the case, the
53272
53375
  * value must use a secure variable either in an expression or as the configured variable.
@@ -53684,6 +53787,10 @@ export class ArchValueGroupCollection extends ArchBaseNetworkValueCollection {
53684
53787
  * this ArchBaseValueBasicCollection instance overall.
53685
53788
  */
53686
53789
  readonly valueText: string | string[];
53790
+ /**
53791
+ * Sets the collection literal mode with no items configured.
53792
+ */
53793
+ setLiteralEmptyCollection(): void;
53687
53794
  /**
53688
53795
  * Returns whether or not this value uses secure data. For this to be the case, the
53689
53796
  * value must use a secure variable either in an expression or as the configured variable.
@@ -54389,6 +54496,10 @@ export class ArchValueImageCollection extends ArchBaseValueCollectionBasic {
54389
54496
  * Returns true indicating that this object is a collection.
54390
54497
  */
54391
54498
  readonly isCollection: boolean;
54499
+ /**
54500
+ * Sets the collection literal mode with no items configured.
54501
+ */
54502
+ setLiteralEmptyCollection(): void;
54392
54503
  /**
54393
54504
  * Returns whether or not this value uses secure data. For this to be the case, the
54394
54505
  * value must use a secure variable either in an expression or as the configured variable.
@@ -55100,6 +55211,10 @@ export class ArchValueIntegerCollection extends ArchBaseValueCollectionBasic {
55100
55211
  * Returns true indicating that this object is a collection.
55101
55212
  */
55102
55213
  readonly isCollection: boolean;
55214
+ /**
55215
+ * Sets the collection literal mode with no items configured.
55216
+ */
55217
+ setLiteralEmptyCollection(): void;
55103
55218
  /**
55104
55219
  * Returns whether or not this value uses secure data. For this to be the case, the
55105
55220
  * value must use a secure variable either in an expression or as the configured variable.
@@ -55777,6 +55892,10 @@ export class ArchValueJourneyOutcomeCollection extends ArchBaseValueCollection {
55777
55892
  * Returns true indicating that this object is a collection.
55778
55893
  */
55779
55894
  readonly isCollection: boolean;
55895
+ /**
55896
+ * Sets the collection literal mode with no items configured.
55897
+ */
55898
+ setLiteralEmptyCollection(): void;
55780
55899
  /**
55781
55900
  * Returns whether or not this value uses secure data. For this to be the case, the
55782
55901
  * value must use a secure variable either in an expression or as the configured variable.
@@ -56460,6 +56579,10 @@ export class ArchValueJourneyOutcomeScoreCollection extends ArchBaseValueCollect
56460
56579
  * Returns true indicating that this object is a collection.
56461
56580
  */
56462
56581
  readonly isCollection: boolean;
56582
+ /**
56583
+ * Sets the collection literal mode with no items configured.
56584
+ */
56585
+ setLiteralEmptyCollection(): void;
56463
56586
  /**
56464
56587
  * Returns whether or not this value uses secure data. For this to be the case, the
56465
56588
  * value must use a secure variable either in an expression or as the configured variable.
@@ -57143,6 +57266,10 @@ export class ArchValueJourneySegmentCollection extends ArchBaseValueCollection {
57143
57266
  * Returns true indicating that this object is a collection.
57144
57267
  */
57145
57268
  readonly isCollection: boolean;
57269
+ /**
57270
+ * Sets the collection literal mode with no items configured.
57271
+ */
57272
+ setLiteralEmptyCollection(): void;
57146
57273
  /**
57147
57274
  * Returns whether or not this value uses secure data. For this to be the case, the
57148
57275
  * value must use a secure variable either in an expression or as the configured variable.
@@ -57826,6 +57953,10 @@ export class ArchValueJourneySessionCollection extends ArchBaseValueCollection {
57826
57953
  * Returns true indicating that this object is a collection.
57827
57954
  */
57828
57955
  readonly isCollection: boolean;
57956
+ /**
57957
+ * Sets the collection literal mode with no items configured.
57958
+ */
57959
+ setLiteralEmptyCollection(): void;
57829
57960
  /**
57830
57961
  * Returns whether or not this value uses secure data. For this to be the case, the
57831
57962
  * value must use a secure variable either in an expression or as the configured variable.
@@ -58531,6 +58662,10 @@ export class ArchValueJsonCollection extends ArchBaseValueCollectionBasic {
58531
58662
  * Returns true indicating that this object is a collection.
58532
58663
  */
58533
58664
  readonly isCollection: boolean;
58665
+ /**
58666
+ * Sets the collection literal mode with no items configured.
58667
+ */
58668
+ setLiteralEmptyCollection(): void;
58534
58669
  /**
58535
58670
  * Returns whether or not this value uses secure data. For this to be the case, the
58536
58671
  * value must use a secure variable either in an expression or as the configured variable.
@@ -59265,6 +59400,10 @@ export class ArchValueKnowledgeBaseDocumentCollection extends ArchBaseNetworkVal
59265
59400
  * this ArchBaseValueBasicCollection instance overall.
59266
59401
  */
59267
59402
  readonly valueText: string | string[];
59403
+ /**
59404
+ * Sets the collection literal mode with no items configured.
59405
+ */
59406
+ setLiteralEmptyCollection(): void;
59268
59407
  /**
59269
59408
  * Returns whether or not this value uses secure data. For this to be the case, the
59270
59409
  * value must use a secure variable either in an expression or as the configured variable.
@@ -59998,6 +60137,10 @@ export class ArchValueLanguageSkillCollection extends ArchBaseNetworkValueCollec
59998
60137
  * this ArchBaseValueBasicCollection instance overall.
59999
60138
  */
60000
60139
  readonly valueText: string | string[];
60140
+ /**
60141
+ * Sets the collection literal mode with no items configured.
60142
+ */
60143
+ setLiteralEmptyCollection(): void;
60001
60144
  /**
60002
60145
  * Returns whether or not this value uses secure data. For this to be the case, the
60003
60146
  * value must use a secure variable either in an expression or as the configured variable.
@@ -60694,6 +60837,10 @@ export class ArchValueLineItemCollection extends ArchBaseValueCollection {
60694
60837
  * Returns true indicating that this object is a collection.
60695
60838
  */
60696
60839
  readonly isCollection: boolean;
60840
+ /**
60841
+ * Sets the collection literal mode with no items configured.
60842
+ */
60843
+ setLiteralEmptyCollection(): void;
60697
60844
  /**
60698
60845
  * Returns whether or not this value uses secure data. For this to be the case, the
60699
60846
  * value must use a secure variable either in an expression or as the configured variable.
@@ -61793,6 +61940,10 @@ export class ArchValueListPickerItemCollection extends ArchBaseValueCollectionBa
61793
61940
  * Returns true indicating that this object is a collection.
61794
61941
  */
61795
61942
  readonly isCollection: boolean;
61943
+ /**
61944
+ * Sets the collection literal mode with no items configured.
61945
+ */
61946
+ setLiteralEmptyCollection(): void;
61796
61947
  /**
61797
61948
  * Returns whether or not this value uses secure data. For this to be the case, the
61798
61949
  * value must use a secure variable either in an expression or as the configured variable.
@@ -62507,6 +62658,10 @@ export class ArchValueListPickerSectionCollection extends ArchBaseValueCollectio
62507
62658
  * Returns true indicating that this object is a collection.
62508
62659
  */
62509
62660
  readonly isCollection: boolean;
62661
+ /**
62662
+ * Sets the collection literal mode with no items configured.
62663
+ */
62664
+ setLiteralEmptyCollection(): void;
62510
62665
  /**
62511
62666
  * Returns whether or not this value uses secure data. For this to be the case, the
62512
62667
  * value must use a secure variable either in an expression or as the configured variable.
@@ -63260,6 +63415,10 @@ export class ArchValuePhoneNumberCollection extends ArchBaseValueCollectionBasic
63260
63415
  * Returns true indicating that this object is a collection.
63261
63416
  */
63262
63417
  readonly isCollection: boolean;
63418
+ /**
63419
+ * Sets the collection literal mode with no items configured.
63420
+ */
63421
+ setLiteralEmptyCollection(): void;
63263
63422
  /**
63264
63423
  * Returns whether or not this value uses secure data. For this to be the case, the
63265
63424
  * value must use a secure variable either in an expression or as the configured variable.
@@ -63989,6 +64148,10 @@ export class ArchValuePromptCollection extends ArchBaseValueCollection {
63989
64148
  * Returns true indicating that this object is a collection.
63990
64149
  */
63991
64150
  readonly isCollection: boolean;
64151
+ /**
64152
+ * Sets the collection literal mode with no items configured.
64153
+ */
64154
+ setLiteralEmptyCollection(): void;
63992
64155
  /**
63993
64156
  * Returns whether or not this value uses secure data. For this to be the case, the
63994
64157
  * value must use a secure variable either in an expression or as the configured variable.
@@ -64727,6 +64890,10 @@ export class ArchValueQueueCollection extends ArchBaseNetworkValueCollection {
64727
64890
  * this ArchBaseValueBasicCollection instance overall.
64728
64891
  */
64729
64892
  readonly valueText: string | string[];
64893
+ /**
64894
+ * Sets the collection literal mode with no items configured.
64895
+ */
64896
+ setLiteralEmptyCollection(): void;
64730
64897
  /**
64731
64898
  * Returns whether or not this value uses secure data. For this to be the case, the
64732
64899
  * value must use a secure variable either in an expression or as the configured variable.
@@ -65810,6 +65977,10 @@ export class ArchValueScheduleCollection extends ArchBaseNetworkValueCollection
65810
65977
  * this ArchBaseValueBasicCollection instance overall.
65811
65978
  */
65812
65979
  readonly valueText: string | string[];
65980
+ /**
65981
+ * Sets the collection literal mode with no items configured.
65982
+ */
65983
+ setLiteralEmptyCollection(): void;
65813
65984
  /**
65814
65985
  * Returns whether or not this value uses secure data. For this to be the case, the
65815
65986
  * value must use a secure variable either in an expression or as the configured variable.
@@ -66544,6 +66715,10 @@ export class ArchValueScheduleGroupCollection extends ArchBaseNetworkValueCollec
66544
66715
  * this ArchBaseValueBasicCollection instance overall.
66545
66716
  */
66546
66717
  readonly valueText: string | string[];
66718
+ /**
66719
+ * Sets the collection literal mode with no items configured.
66720
+ */
66721
+ setLiteralEmptyCollection(): void;
66547
66722
  /**
66548
66723
  * Returns whether or not this value uses secure data. For this to be the case, the
66549
66724
  * value must use a secure variable either in an expression or as the configured variable.
@@ -67380,6 +67555,10 @@ export class ArchValueShippingOptionCollection extends ArchBaseValueCollection {
67380
67555
  * Returns true indicating that this object is a collection.
67381
67556
  */
67382
67557
  readonly isCollection: boolean;
67558
+ /**
67559
+ * Sets the collection literal mode with no items configured.
67560
+ */
67561
+ setLiteralEmptyCollection(): void;
67383
67562
  /**
67384
67563
  * Returns whether or not this value uses secure data. For this to be the case, the
67385
67564
  * value must use a secure variable either in an expression or as the configured variable.
@@ -68122,6 +68301,10 @@ export class ArchValueSkillCollection extends ArchBaseNetworkValueCollection {
68122
68301
  * this ArchBaseValueBasicCollection instance overall.
68123
68302
  */
68124
68303
  readonly valueText: string | string[];
68304
+ /**
68305
+ * Sets the collection literal mode with no items configured.
68306
+ */
68307
+ setLiteralEmptyCollection(): void;
68125
68308
  /**
68126
68309
  * Returns whether or not this value uses secure data. For this to be the case, the
68127
68310
  * value must use a secure variable either in an expression or as the configured variable.
@@ -68824,6 +69007,10 @@ export class ArchValueStringCollection extends ArchBaseValueCollectionBasic {
68824
69007
  * Returns true indicating that this object is a collection.
68825
69008
  */
68826
69009
  readonly isCollection: boolean;
69010
+ /**
69011
+ * Sets the collection literal mode with no items configured.
69012
+ */
69013
+ setLiteralEmptyCollection(): void;
68827
69014
  /**
68828
69015
  * Returns whether or not this value uses secure data. For this to be the case, the
68829
69016
  * value must use a secure variable either in an expression or as the configured variable.
@@ -69531,6 +69718,10 @@ export class ArchValueSurveyAnswerOptionCollection extends ArchBaseValueCollecti
69531
69718
  * Returns true indicating that this object is a collection.
69532
69719
  */
69533
69720
  readonly isCollection: boolean;
69721
+ /**
69722
+ * Sets the collection literal mode with no items configured.
69723
+ */
69724
+ setLiteralEmptyCollection(): void;
69534
69725
  /**
69535
69726
  * Returns whether or not this value uses secure data. For this to be the case, the
69536
69727
  * value must use a secure variable either in an expression or as the configured variable.
@@ -70559,6 +70750,10 @@ export class ArchValueSurveyQuestionCollection extends ArchBaseValueCollectionBa
70559
70750
  * Returns true indicating that this object is a collection.
70560
70751
  */
70561
70752
  readonly isCollection: boolean;
70753
+ /**
70754
+ * Sets the collection literal mode with no items configured.
70755
+ */
70756
+ setLiteralEmptyCollection(): void;
70562
70757
  /**
70563
70758
  * Returns whether or not this value uses secure data. For this to be the case, the
70564
70759
  * value must use a secure variable either in an expression or as the configured variable.
@@ -71248,6 +71443,10 @@ export class ArchValueSurveyQuestionGroupCollection extends ArchBaseValueCollect
71248
71443
  * Returns true indicating that this object is a collection.
71249
71444
  */
71250
71445
  readonly isCollection: boolean;
71446
+ /**
71447
+ * Sets the collection literal mode with no items configured.
71448
+ */
71449
+ setLiteralEmptyCollection(): void;
71251
71450
  /**
71252
71451
  * Returns whether or not this value uses secure data. For this to be the case, the
71253
71452
  * value must use a secure variable either in an expression or as the configured variable.
@@ -71951,6 +72150,10 @@ export class ArchValueTimeCollection extends ArchBaseValueCollectionBasic {
71951
72150
  * Returns true indicating that this object is a collection.
71952
72151
  */
71953
72152
  readonly isCollection: boolean;
72153
+ /**
72154
+ * Sets the collection literal mode with no items configured.
72155
+ */
72156
+ setLiteralEmptyCollection(): void;
71954
72157
  /**
71955
72158
  * Returns whether or not this value uses secure data. For this to be the case, the
71956
72159
  * value must use a secure variable either in an expression or as the configured variable.
@@ -73042,6 +73245,10 @@ export class ArchValueTimeslotCollection extends ArchBaseValueCollectionBasic {
73042
73245
  * Returns true indicating that this object is a collection.
73043
73246
  */
73044
73247
  readonly isCollection: boolean;
73248
+ /**
73249
+ * Sets the collection literal mode with no items configured.
73250
+ */
73251
+ setLiteralEmptyCollection(): void;
73045
73252
  /**
73046
73253
  * Returns whether or not this value uses secure data. For this to be the case, the
73047
73254
  * value must use a secure variable either in an expression or as the configured variable.
@@ -73774,6 +73981,10 @@ export class ArchValueUserCollection extends ArchBaseNetworkValueCollection {
73774
73981
  * this ArchBaseValueBasicCollection instance overall.
73775
73982
  */
73776
73983
  readonly valueText: string | string[];
73984
+ /**
73985
+ * Sets the collection literal mode with no items configured.
73986
+ */
73987
+ setLiteralEmptyCollection(): void;
73777
73988
  /**
73778
73989
  * Returns whether or not this value uses secure data. For this to be the case, the
73779
73990
  * value must use a secure variable either in an expression or as the configured variable.
@@ -74507,6 +74718,10 @@ export class ArchValueUtilizationLabelCollection extends ArchBaseValueCollection
74507
74718
  * Returns true indicating that this object is a collection.
74508
74719
  */
74509
74720
  readonly isCollection: boolean;
74721
+ /**
74722
+ * Sets the collection literal mode with no items configured.
74723
+ */
74724
+ setLiteralEmptyCollection(): void;
74510
74725
  /**
74511
74726
  * Returns whether or not this value uses secure data. For this to be the case, the
74512
74727
  * value must use a secure variable either in an expression or as the configured variable.
@@ -75862,6 +76077,10 @@ export class ArchValueWorkbinCollection extends ArchBaseValueCollection {
75862
76077
  * Returns true indicating that this object is a collection.
75863
76078
  */
75864
76079
  readonly isCollection: boolean;
76080
+ /**
76081
+ * Sets the collection literal mode with no items configured.
76082
+ */
76083
+ setLiteralEmptyCollection(): void;
75865
76084
  /**
75866
76085
  * Returns whether or not this value uses secure data. For this to be the case, the
75867
76086
  * value must use a secure variable either in an expression or as the configured variable.
@@ -76895,6 +77114,10 @@ export class ArchValueWorktypeStatusCollection extends ArchBaseValueCollection {
76895
77114
  * Returns true indicating that this object is a collection.
76896
77115
  */
76897
77116
  readonly isCollection: boolean;
77117
+ /**
77118
+ * Sets the collection literal mode with no items configured.
77119
+ */
77120
+ setLiteralEmptyCollection(): void;
76898
77121
  /**
76899
77122
  * Returns whether or not this value uses secure data. For this to be the case, the
76900
77123
  * value must use a secure variable either in an expression or as the configured variable.
@@ -77634,6 +77857,10 @@ export class ArchValueWrapupCodeCollection extends ArchBaseNetworkValueCollectio
77634
77857
  * this ArchBaseValueBasicCollection instance overall.
77635
77858
  */
77636
77859
  readonly valueText: string | string[];
77860
+ /**
77861
+ * Sets the collection literal mode with no items configured.
77862
+ */
77863
+ setLiteralEmptyCollection(): void;
77637
77864
  /**
77638
77865
  * Returns whether or not this value uses secure data. For this to be the case, the
77639
77866
  * value must use a secure variable either in an expression or as the configured variable.
@@ -91348,6 +91575,7 @@ declare module 'purecloud-flow-scripting-api-sdk-javascript' {
91348
91575
  let ArchBaseActionNoInputNoMatch: ArchBaseActionNoInputNoMatch;
91349
91576
  let ArchBaseActionBot: ArchBaseActionBot;
91350
91577
  let ArchBaseActionBotWithSessionVariables: ArchBaseActionBotWithSessionVariables;
91578
+ let ArchBaseActionConversationAttribute: ArchBaseActionConversationAttribute;
91351
91579
  let ArchBaseActionDataAction: ArchBaseActionDataAction;
91352
91580
  let ArchBaseDefinition: ArchBaseDefinition;
91353
91581
  let ArchBaseActionFindSystemObject: ArchBaseActionFindSystemObject;