@aws-sdk/client-connect 3.1076.0 → 3.1077.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.
Files changed (64) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +199 -53
  3. package/dist-es/Connect.js +4 -0
  4. package/dist-es/commands/CreateAttachedFileCommand.js +16 -0
  5. package/dist-es/commands/StartContactConversationalAnalyticsJobCommand.js +16 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +25 -0
  8. package/dist-es/runtimeConfig.browser.js +0 -2
  9. package/dist-es/runtimeConfig.js +1 -2
  10. package/dist-es/runtimeConfig.native.js +0 -2
  11. package/dist-es/runtimeConfig.shared.js +2 -0
  12. package/dist-es/schemas/schemas_0.js +128 -50
  13. package/dist-types/Connect.d.ts +14 -0
  14. package/dist-types/ConnectClient.d.ts +4 -2
  15. package/dist-types/commands/BatchGetAttachedFileMetadataCommand.d.ts +1 -1
  16. package/dist-types/commands/CreateAttachedFileCommand.d.ts +115 -0
  17. package/dist-types/commands/CreateEvaluationFormCommand.d.ts +1 -1
  18. package/dist-types/commands/GetAttachedFileCommand.d.ts +1 -1
  19. package/dist-types/commands/GetMetricDataCommand.d.ts +2 -1
  20. package/dist-types/commands/SearchEmailAddressesCommand.d.ts +1 -2
  21. package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +1 -1
  22. package/dist-types/commands/StartChatContactCommand.d.ts +2 -1
  23. package/dist-types/commands/StartContactConversationalAnalyticsJobCommand.d.ts +135 -0
  24. package/dist-types/commands/StartEmailContactCommand.d.ts +2 -1
  25. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +2 -1
  26. package/dist-types/commands/StartTaskContactCommand.d.ts +2 -1
  27. package/dist-types/commands/UpdateContactCommand.d.ts +2 -1
  28. package/dist-types/commands/index.d.ts +2 -0
  29. package/dist-types/models/enums.d.ts +65 -0
  30. package/dist-types/models/models_0.d.ts +75 -94
  31. package/dist-types/models/models_1.d.ts +95 -33
  32. package/dist-types/models/models_2.d.ts +34 -60
  33. package/dist-types/models/models_3.d.ts +218 -728
  34. package/dist-types/models/models_4.d.ts +728 -3
  35. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  36. package/dist-types/runtimeConfig.d.ts +1 -1
  37. package/dist-types/runtimeConfig.native.d.ts +1 -1
  38. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  39. package/dist-types/schemas/schemas_0.d.ts +12 -0
  40. package/dist-types/ts3.4/Connect.d.ts +40 -0
  41. package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
  42. package/dist-types/ts3.4/commands/CreateAttachedFileCommand.d.ts +53 -0
  43. package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/SearchEmailAddressesCommand.d.ts +4 -2
  46. package/dist-types/ts3.4/commands/StartChatContactCommand.d.ts +2 -4
  47. package/dist-types/ts3.4/commands/StartContactConversationalAnalyticsJobCommand.d.ts +53 -0
  48. package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +2 -4
  50. package/dist-types/ts3.4/commands/StartTaskContactCommand.d.ts +2 -4
  51. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +2 -4
  52. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  53. package/dist-types/ts3.4/models/enums.d.ts +30 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +14 -21
  55. package/dist-types/ts3.4/models/models_1.d.ts +22 -9
  56. package/dist-types/ts3.4/models/models_2.d.ts +9 -15
  57. package/dist-types/ts3.4/models/models_3.d.ts +56 -145
  58. package/dist-types/ts3.4/models/models_4.d.ts +155 -3
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  63. package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
  64. package/package.json +6 -8
package/dist-cjs/index.js CHANGED
@@ -10,9 +10,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
10
10
  const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
11
  const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
12
  const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
- const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
14
  const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
15
  const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
16
17
 
17
18
  const defaultConnectHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
19
  return {
@@ -67,7 +68,7 @@ const commonParams = {
67
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
68
69
  };
69
70
 
70
- var version = "3.1075.0";
71
+ var version = "3.1076.0";
71
72
  var packageInfo = {
72
73
  version: version};
73
74
 
@@ -596,6 +597,7 @@ const _ACl = "AliasConfiguration";
596
597
  const _ACli = "AliasConfigurations";
597
598
  const _ACll = "AllowedCapabilities";
598
599
  const _ACn = "AndConditions";
600
+ const _ACna = "AnalyticsConfiguration";
599
601
  const _ACnd = "AndCondition";
600
602
  const _ACt = "AttributeCondition";
601
603
  const _ACtt = "AttributeConditions";
@@ -685,6 +687,7 @@ const _AMAQI = "AssociatedManualAssignmentQueueIds";
685
687
  const _AMC = "AllowedMonitorCapabilities";
686
688
  const _AMDC = "AnswerMachineDetectionConfig";
687
689
  const _AMDS = "AnsweringMachineDetectionStatus";
690
+ const _AMn = "AnalyticsModes";
688
691
  const _AN = "AttributeName";
689
692
  const _ANL = "AvailableNumbersList";
690
693
  const _ANS = "AvailableNumberSummary";
@@ -839,9 +842,13 @@ const _BUDTVSRL = "BatchUpdateDataTableValueSuccessResultList";
839
842
  const _BV = "BooleanValue";
840
843
  const _BWO = "ByWeekdayOccurrence";
841
844
  const _Ba = "Background";
845
+ const _Be = "Behavior";
842
846
  const _C = "Channel";
843
847
  const _CA = "ContactArn";
844
848
  const _CAAC = "CommonAttributeAndCondition";
849
+ const _CAF = "CreateAttachedFile";
850
+ const _CAFR = "CreateAttachedFileRequest";
851
+ const _CAFRr = "CreateAttachedFileResponse";
845
852
  const _CAFU = "CompleteAttachedFileUpload";
846
853
  const _CAFUR = "CompleteAttachedFileUploadRequest";
847
854
  const _CAFURo = "CompleteAttachedFileUploadResponse";
@@ -1634,6 +1641,7 @@ const _En = "Enabled";
1634
1641
  const _Ena = "Enablement";
1635
1642
  const _End = "Endpoint";
1636
1643
  const _End_ = "End";
1644
+ const _Ent = "Entities";
1637
1645
  const _Enu = "Enum";
1638
1646
  const _Er = "Errors";
1639
1647
  const _Err = "Error";
@@ -1684,6 +1692,7 @@ const _FS = "FileStatus";
1684
1692
  const _FSIB = "FileSizeInBytes";
1685
1693
  const _FSN = "FragmentStartNumber";
1686
1694
  const _FSNr = "FragmentStopNumber";
1695
+ const _FSU = "FileSourceUri";
1687
1696
  const _FUCT = "FileUseCaseType";
1688
1697
  const _FV = "FieldValue";
1689
1698
  const _FVL = "FiltersV2List";
@@ -1916,7 +1925,7 @@ const _LBR = "ListBotsRequest";
1916
1925
  const _LBRi = "ListBotsResponse";
1917
1926
  const _LBe = "LexBots";
1918
1927
  const _LBi = "ListBots";
1919
- const _LC = "LanguageCode";
1928
+ const _LC = "LanguageConfiguration";
1920
1929
  const _LCE = "ListContactEvaluations";
1921
1930
  const _LCER = "ListContactEvaluationsRequest";
1922
1931
  const _LCERi = "ListContactEvaluationsResponse";
@@ -1941,7 +1950,7 @@ const _LCHOORi = "ListChildHoursOfOperationsResponse";
1941
1950
  const _LCR = "ListContactReferences";
1942
1951
  const _LCRR = "ListContactReferencesRequest";
1943
1952
  const _LCRRi = "ListContactReferencesResponse";
1944
- const _LCa = "LanguageConfiguration";
1953
+ const _LCa = "LanguageCode";
1945
1954
  const _LCi = "ListCondition";
1946
1955
  const _LDT = "ListDataTables";
1947
1956
  const _LDTA = "ListDataTableAttributes";
@@ -1998,6 +2007,7 @@ const _LIds_ = "L4Ids";
1998
2007
  const _LIds__ = "L5Ids";
1999
2008
  const _LIe = "LevelId";
2000
2009
  const _LIi = "ListInstances";
2010
+ const _LL = "LanguageLocale";
2001
2011
  const _LLB = "ListLexBots";
2002
2012
  const _LLBR = "ListLexBotsRequest";
2003
2013
  const _LLBRi = "ListLexBotsResponse";
@@ -2173,6 +2183,7 @@ const _ML = "MinLength";
2173
2183
  const _MLIC = "MessageLengthInChars";
2174
2184
  const _MLa = "MaxLength";
2175
2185
  const _MLe = "MediaList";
2186
+ const _MM = "MaskMode";
2176
2187
  const _MO = "MillisecondOffsets";
2177
2188
  const _MOu = "MultipleOf";
2178
2189
  const _MP = "MultiParty";
@@ -2420,6 +2431,7 @@ const _Pag = "Page";
2420
2431
  const _Pal = "Palette";
2421
2432
  const _Pe = "Permissions";
2422
2433
  const _Per = "Percentage";
2434
+ const _Po = "Policy";
2423
2435
  const _Pr = "Preview";
2424
2436
  const _Pre = "Prefix";
2425
2437
  const _Pri = "Primary";
@@ -2483,7 +2495,7 @@ const _RAu = "RuleArn";
2483
2495
  const _RAul = "RuleAction";
2484
2496
  const _RAule = "RuleActions";
2485
2497
  const _RB = "RequestedBy";
2486
- const _RC = "RoutingCriteria";
2498
+ const _RC = "RedactionConfiguration";
2487
2499
  const _RCAS = "RealtimeContactAnalysisSegments";
2488
2500
  const _RCASe = "RealtimeContactAnalysisSegment";
2489
2501
  const _RCE = "ResourceConflictException";
@@ -2501,7 +2513,9 @@ const _RCe = "ReviewConfiguration";
2501
2513
  const _RCec = "RecurrenceConfig";
2502
2514
  const _RCep = "ReplicationConfiguration";
2503
2515
  const _RCes = "ResumeContact";
2504
- const _RCu = "RuleCategory";
2516
+ const _RCo = "RoutingCriteria";
2517
+ const _RCu = "RulesConfiguration";
2518
+ const _RCul = "RuleCategory";
2505
2519
  const _RF = "RequiredFields";
2506
2520
  const _RFI = "RequiredFieldInfo";
2507
2521
  const _RI = "ResourceId";
@@ -2657,6 +2671,9 @@ const _SCATRCL = "SearchContactsAdditionalTimeRangeCriteriaList";
2657
2671
  const _SCAV = "SearchableContactAttributeValue";
2658
2672
  const _SCAVL = "SearchableContactAttributeValueList";
2659
2673
  const _SCC = "StartChatContact";
2674
+ const _SCCAJ = "StartContactConversationalAnalyticsJob";
2675
+ const _SCCAJR = "StartContactConversationalAnalyticsJobRequest";
2676
+ const _SCCAJRt = "StartContactConversationalAnalyticsJobResponse";
2660
2677
  const _SCCR = "StartChatContactRequest";
2661
2678
  const _SCCRt = "StartChatContactResponse";
2662
2679
  const _SCE = "SearchContactEvaluations";
@@ -2706,8 +2723,9 @@ const _SCSt = "StopContactStreaming";
2706
2723
  const _SCTC = "SearchContactsTimestampCondition";
2707
2724
  const _SCTR = "SearchContactsTimeRange";
2708
2725
  const _SCc = "ScoringConfiguration";
2709
- const _SCe = "SearchCriteria";
2710
- const _SCea = "SearchContacts";
2726
+ const _SCe = "SentimentConfiguration";
2727
+ const _SCea = "SearchCriteria";
2728
+ const _SCear = "SearchContacts";
2711
2729
  const _SCo = "SortCriteria";
2712
2730
  const _SCon = "S3Config";
2713
2731
  const _SCou = "SourceCampaign";
@@ -2717,6 +2735,7 @@ const _SCtat = "StatusCondition";
2717
2735
  const _SCto = "StorageConfigs";
2718
2736
  const _SCtop = "StopContact";
2719
2737
  const _SCtr = "StreamingConfiguration";
2738
+ const _SCu = "SummaryConfiguration";
2720
2739
  const _SDT = "SearchDataTables";
2721
2740
  const _SDTR = "SearchDataTablesRequest";
2722
2741
  const _SDTRe = "SearchDataTablesResponse";
@@ -2759,6 +2778,7 @@ const _SKL = "SecurityKeysList";
2759
2778
  const _SKe = "SecurityKey";
2760
2779
  const _SL = "SuccessfulList";
2761
2780
  const _SLt = "StringList";
2781
+ const _SM = "SummaryModes";
2762
2782
  const _SMCT = "SupportedMessagingContentTypes";
2763
2783
  const _SN = "StatusName";
2764
2784
  const _SNA = "ScoreNotApplicable";
@@ -3732,6 +3752,11 @@ var AllowedExtension$ = [3, n0, _AEl,
3732
3752
  [_Ex],
3733
3753
  [0], 1
3734
3754
  ];
3755
+ var AnalyticsConfiguration$ = [3, n0, _ACna,
3756
+ 0,
3757
+ [_LC, _RC, _SCe, _SCu, _RCu],
3758
+ [() => LanguageConfiguration$, () => RedactionConfiguration$, () => SentimentConfiguration$, () => SummaryConfiguration$, () => RulesConfiguration$], 5
3759
+ ];
3735
3760
  var AnalyticsDataAssociationResult$ = [3, n0, _ADAR,
3736
3761
  0,
3737
3762
  [_DSI, _TAI, _RSI, _RSA, _RSS],
@@ -3799,7 +3824,7 @@ var AssociatedContactSummary$ = [3, n0, _ACSs,
3799
3824
  ];
3800
3825
  var AssociateDefaultVocabularyRequest$ = [3, n0, _ADVR,
3801
3826
  0,
3802
- [_II, _LC, _VI],
3827
+ [_II, _LCa, _VI],
3803
3828
  [[0, 1], [0, 1], 0], 2
3804
3829
  ];
3805
3830
  var AssociateDefaultVocabularyResponse$ = [3, n0, _ADVRs,
@@ -4224,7 +4249,7 @@ var ConnectionData$ = [3, n0, _CD,
4224
4249
  ];
4225
4250
  var Contact$ = [3, n0, _Cont,
4226
4251
  0,
4227
- [_A, _I, _ICI, _PCI, _CAI, _IM, _N, _D, _C, _QIu, _AI, _IT, _DT, _LUT, _LPT, _LRT, _RST, _TPC, _TPDIS, _STc, _RCI, _WIi, _CIu, _CEu, _SE, _QTAS, _QP, _Ta, _CTST, _RC, _Cu, _Cam, _AMDS, _CVA, _QM, _CMh, _DD, _AER, _SAe, _Re, _DR, _CEo, _TTI, _CDo, _OSu, _Attr, _NCe, _GRM],
4252
+ [_A, _I, _ICI, _PCI, _CAI, _IM, _N, _D, _C, _QIu, _AI, _IT, _DT, _LUT, _LPT, _LRT, _RST, _TPC, _TPDIS, _STc, _RCI, _WIi, _CIu, _CEu, _SE, _QTAS, _QP, _Ta, _CTST, _RCo, _Cu, _Cam, _AMDS, _CVA, _QM, _CMh, _DD, _AER, _SAe, _Re, _DR, _CEo, _TTI, _CDo, _OSu, _Attr, _NCe, _GRM],
4228
4253
  [0, 0, 0, 0, 0, 0, [() => Name, 0], [() => Description, 0], 0, () => QueueInfo$, () => AgentInfo$, 4, 4, 4, 4, 4, 4, 1, 1, 4, 0, () => WisdomInfo$, 0, () => EndpointInfo$, () => EndpointInfo$, 1, 1, 128 | 0, 4, () => RoutingCriteria$, () => Customer$, () => Campaign$, 0, () => CustomerVoiceActivity$, () => QualityMetrics$, () => ChatMetrics$, () => DisconnectDetails$, () => AdditionalEmailRecipients$, () => SegmentAttributes, () => Recordings, 0, () => ContactEvaluations, () => TaskTemplateInfoV2$, () => ContactDetails$, () => OutboundStrategy$, 128 | 0, () => NextContacts, () => GlobalResiliencyMetadata$]
4229
4254
  ];
4230
4255
  var ContactAnalysis$ = [3, n0, _CAo,
@@ -4364,7 +4389,7 @@ var ContactMetricResult$ = [3, n0, _CMR,
4364
4389
  ];
4365
4390
  var ContactSearchSummary$ = [3, n0, _CSS,
4366
4391
  0,
4367
- [_A, _I, _ICI, _PCI, _IM, _C, _QIu, _AI, _IT, _DT, _STc, _SAe, _N, _RC, _Ta, _GRM, _AAI],
4392
+ [_A, _I, _ICI, _PCI, _IM, _C, _QIu, _AI, _IT, _DT, _STc, _SAe, _N, _RCo, _Ta, _GRM, _AAI],
4368
4393
  [0, 0, 0, 0, 0, 0, () => ContactSearchSummaryQueueInfo$, () => ContactSearchSummaryAgentInfo$, 4, 4, 4, [() => ContactSearchSummarySegmentAttributes, 0], [() => Name, 0], () => RoutingCriteria$, 128 | 0, () => GlobalResiliencyMetadata$, () => ContactSearchSummaryAiAgentInfoList]
4369
4394
  ];
4370
4395
  var ContactSearchSummaryAgentInfo$ = [3, n0, _CSSAI,
@@ -4412,6 +4437,16 @@ var CreateAgentStatusResponse$ = [3, n0, _CASRr,
4412
4437
  [_ASARN, _ASI],
4413
4438
  [0, 0]
4414
4439
  ];
4440
+ var CreateAttachedFileRequest$ = [3, n0, _CAFR,
4441
+ 0,
4442
+ [_II, _FUCT, _FSU, _ARA, _CT, _Ta],
4443
+ [[0, 1], 0, 0, [0, { [_hQ]: _aRA }], [0, 4], 128 | 0], 4
4444
+ ];
4445
+ var CreateAttachedFileResponse$ = [3, n0, _CAFRr,
4446
+ 0,
4447
+ [_FAi, _FIi, _CTr, _FS],
4448
+ [0, 0, 0, 0]
4449
+ ];
4415
4450
  var CreateCaseActionDefinition$ = [3, n0, _CCAD,
4416
4451
  0,
4417
4452
  [_Fie, _TI],
@@ -4509,7 +4544,7 @@ var CreateEmailAddressResponse$ = [3, n0, _CEARr,
4509
4544
  ];
4510
4545
  var CreateEvaluationFormRequest$ = [3, n0, _CEFR,
4511
4546
  0,
4512
- [_II, _Ti, _It, _D, _SS, _AEC, _CT, _ADs, _Ta, _RCe, _TCar, _LCa],
4547
+ [_II, _Ti, _It, _D, _SS, _AEC, _CT, _ADs, _Ta, _RCe, _TCar, _LC],
4513
4548
  [[0, 1], 0, () => EvaluationFormItemsList, 0, () => EvaluationFormScoringStrategy$, () => EvaluationFormAutoEvaluationConfiguration$, [0, 4], 2, 128 | 0, () => EvaluationReviewConfiguration$, () => EvaluationFormTargetConfiguration$, () => EvaluationFormLanguageConfiguration$], 3
4514
4549
  ];
4515
4550
  var CreateEvaluationFormResponse$ = [3, n0, _CEFRr,
@@ -4744,7 +4779,7 @@ var CreateViewVersionResponse$ = [3, n0, _CVVRr,
4744
4779
  ];
4745
4780
  var CreateVocabularyRequest$ = [3, n0, _CVRre,
4746
4781
  0,
4747
- [_II, _VNo, _LC, _Co, _CT, _Ta],
4782
+ [_II, _VNo, _LCa, _Co, _CT, _Ta],
4748
4783
  [[0, 1], 0, 0, 0, [0, 4], 128 | 0], 4
4749
4784
  ];
4750
4785
  var CreateVocabularyResponse$ = [3, n0, _CVRrea,
@@ -4914,7 +4949,7 @@ var DecimalCondition$ = [3, n0, _DCe,
4914
4949
  ];
4915
4950
  var DefaultVocabulary$ = [3, n0, _DV,
4916
4951
  0,
4917
- [_II, _LC, _VI, _VNo],
4952
+ [_II, _LCa, _VI, _VNo],
4918
4953
  [0, 0, 0, 0], 4
4919
4954
  ];
4920
4955
  var DeleteAttachedFileRequest$ = [3, n0, _DAFR,
@@ -5829,7 +5864,7 @@ var EvaluationContactParticipant$ = [3, n0, _ECP,
5829
5864
  ];
5830
5865
  var EvaluationForm$ = [3, n0, _EFv,
5831
5866
  0,
5832
- [_EFI, _EFV, _L, _EFA, _Ti, _St, _It, _CTre, _CB, _LMT, _LMB, _D, _SS, _AEC, _RCe, _Ta, _TCar, _LCa, _LVS, _LVT],
5867
+ [_EFI, _EFV, _L, _EFA, _Ti, _St, _It, _CTre, _CB, _LMT, _LMB, _D, _SS, _AEC, _RCe, _Ta, _TCar, _LC, _LVS, _LVT],
5833
5868
  [0, 1, 2, 0, 0, 0, () => EvaluationFormItemsList, 4, 0, 4, 0, 0, () => EvaluationFormScoringStrategy$, () => EvaluationFormAutoEvaluationConfiguration$, () => EvaluationReviewConfiguration$, 128 | 0, () => EvaluationFormTargetConfiguration$, () => EvaluationFormLanguageConfiguration$, 0, 4], 11
5834
5869
  ];
5835
5870
  var EvaluationFormAutoEvaluationConfiguration$ = [3, n0, _EFAEC,
@@ -5839,7 +5874,7 @@ var EvaluationFormAutoEvaluationConfiguration$ = [3, n0, _EFAEC,
5839
5874
  ];
5840
5875
  var EvaluationFormContent$ = [3, n0, _EFC,
5841
5876
  0,
5842
- [_EFV, _EFI, _EFA, _Ti, _It, _D, _SS, _AEC, _TCar, _LCa, _RCe],
5877
+ [_EFV, _EFI, _EFA, _Ti, _It, _D, _SS, _AEC, _TCar, _LC, _RCe],
5843
5878
  [1, 0, 0, 0, () => EvaluationFormItemsList, 0, () => EvaluationFormScoringStrategy$, () => EvaluationFormAutoEvaluationConfiguration$, () => EvaluationFormTargetConfiguration$, () => EvaluationFormLanguageConfiguration$, () => EvaluationReviewConfiguration$], 5
5844
5879
  ];
5845
5880
  var EvaluationFormItemEnablementCondition$ = [3, n0, _EFIEC,
@@ -6542,6 +6577,11 @@ var KinesisVideoStreamConfig$ = [3, n0, _KVSC,
6542
6577
  [_Pre, _RPH, _ECn],
6543
6578
  [0, 1, () => EncryptionConfig$], 3
6544
6579
  ];
6580
+ var LanguageConfiguration$ = [3, n0, _LC,
6581
+ 0,
6582
+ [_LL],
6583
+ [0]
6584
+ ];
6545
6585
  var LexBot$ = [3, n0, _LB,
6546
6586
  0,
6547
6587
  [_N, _LR],
@@ -6764,7 +6804,7 @@ var ListDataTableValuesResponse$ = [3, n0, _LDTVRi,
6764
6804
  ];
6765
6805
  var ListDefaultVocabulariesRequest$ = [3, n0, _LDVR,
6766
6806
  0,
6767
- [_II, _LC, _MR, _NT],
6807
+ [_II, _LCa, _MR, _NT],
6768
6808
  [[0, 1], 0, 1, 0], 1
6769
6809
  ];
6770
6810
  var ListDefaultVocabulariesResponse$ = [3, n0, _LDVRi,
@@ -7817,6 +7857,11 @@ var RecurrencePattern$ = [3, n0, _RPe,
7817
7857
  [_Fr, _Int, _BM, _BMD, _BWO],
7818
7858
  [0, 1, 64 | 1, 64 | 1, 64 | 1], 2
7819
7859
  ];
7860
+ var RedactionConfiguration$ = [3, n0, _RC,
7861
+ 0,
7862
+ [_Be, _Po, _Ent, _MM],
7863
+ [0, 0, 64 | 0, 0], 2
7864
+ ];
7820
7865
  var Reference$ = [3, n0, _Refe,
7821
7866
  0,
7822
7867
  [_T, _V, _St, _A, _SRt],
@@ -7877,7 +7922,7 @@ var ResumeContactResponse$ = [3, n0, _RCRe,
7877
7922
  [],
7878
7923
  []
7879
7924
  ];
7880
- var RoutingCriteria$ = [3, n0, _RC,
7925
+ var RoutingCriteria$ = [3, n0, _RCo,
7881
7926
  0,
7882
7927
  [_Ste, _ATct, _Ind],
7883
7928
  [() => Steps, 4, 1]
@@ -7957,6 +8002,11 @@ var RuleAction$ = [3, n0, _RAul,
7957
8002
  [_AT, _TAa, _EBA, _ACCA, _SNAe, _CCA, _UCAp, _ASA, _EATA, _SAEA],
7958
8003
  [0, () => TaskActionDefinition$, () => EventBridgeActionDefinition$, () => AssignContactCategoryActionDefinition$, () => SendNotificationActionDefinition$, () => CreateCaseActionDefinition$, () => UpdateCaseActionDefinition$, () => AssignSlaActionDefinition$, () => EndAssociatedTasksActionDefinition$, () => SubmitAutoEvaluationActionDefinition$], 1
7959
8004
  ];
8005
+ var RulesConfiguration$ = [3, n0, _RCu,
8006
+ 0,
8007
+ [_Be],
8008
+ [0]
8009
+ ];
7960
8010
  var RuleSummary$ = [3, n0, _RSu,
7961
8011
  0,
7962
8012
  [_N, _RIu, _RAu, _ESN, _PS, _ASc, _CTre, _LUTa],
@@ -8009,7 +8059,7 @@ var SearchableSegmentAttributesCriteria$ = [3, n0, _SSAC,
8009
8059
  ];
8010
8060
  var SearchAgentStatusesRequest$ = [3, n0, _SASR,
8011
8061
  0,
8012
- [_II, _NT, _MR, _SF, _SCe],
8062
+ [_II, _NT, _MR, _SF, _SCea],
8013
8063
  [0, 0, 1, () => AgentStatusSearchFilter$, () => AgentStatusSearchCriteria$], 1
8014
8064
  ];
8015
8065
  var SearchAgentStatusesResponse$ = [3, n0, _SASRe,
@@ -8029,7 +8079,7 @@ var SearchAvailablePhoneNumbersResponse$ = [3, n0, _SAPNRe,
8029
8079
  ];
8030
8080
  var SearchContactEvaluationsRequest$ = [3, n0, _SCER,
8031
8081
  0,
8032
- [_II, _NT, _MR, _SCe, _SF],
8082
+ [_II, _NT, _MR, _SCea, _SF],
8033
8083
  [0, 0, 1, () => EvaluationSearchCriteria$, () => EvaluationSearchFilter$], 1
8034
8084
  ];
8035
8085
  var SearchContactEvaluationsResponse$ = [3, n0, _SCERe,
@@ -8039,7 +8089,7 @@ var SearchContactEvaluationsResponse$ = [3, n0, _SCERe,
8039
8089
  ];
8040
8090
  var SearchContactFlowModulesRequest$ = [3, n0, _SCFMR,
8041
8091
  0,
8042
- [_II, _NT, _MR, _SF, _SCe],
8092
+ [_II, _NT, _MR, _SF, _SCea],
8043
8093
  [0, 0, 1, () => ContactFlowModuleSearchFilter$, () => ContactFlowModuleSearchCriteria$], 1
8044
8094
  ];
8045
8095
  var SearchContactFlowModulesResponse$ = [3, n0, _SCFMRe,
@@ -8049,7 +8099,7 @@ var SearchContactFlowModulesResponse$ = [3, n0, _SCFMRe,
8049
8099
  ];
8050
8100
  var SearchContactFlowsRequest$ = [3, n0, _SCFR,
8051
8101
  0,
8052
- [_II, _NT, _MR, _SF, _SCe],
8102
+ [_II, _NT, _MR, _SF, _SCea],
8053
8103
  [0, 0, 1, () => ContactFlowSearchFilter$, () => ContactFlowSearchCriteria$], 1
8054
8104
  ];
8055
8105
  var SearchContactFlowsResponse$ = [3, n0, _SCFRe,
@@ -8069,7 +8119,7 @@ var SearchContactsAdditionalTimeRangeCriteria$ = [3, n0, _SCATRC,
8069
8119
  ];
8070
8120
  var SearchContactsRequest$ = [3, n0, _SCR,
8071
8121
  0,
8072
- [_II, _TR, _SCe, _MR, _NT, _Sor],
8122
+ [_II, _TR, _SCea, _MR, _NT, _Sor],
8073
8123
  [0, () => SearchContactsTimeRange$, [() => SearchCriteria$, 0], 1, 0, () => Sort$], 2
8074
8124
  ];
8075
8125
  var SearchContactsResponse$ = [3, n0, _SCRe,
@@ -8087,14 +8137,14 @@ var SearchContactsTimestampCondition$ = [3, n0, _SCTC,
8087
8137
  [_T, _CTond],
8088
8138
  [0, 0], 2
8089
8139
  ];
8090
- var SearchCriteria$ = [3, n0, _SCe,
8140
+ var SearchCriteria$ = [3, n0, _SCea,
8091
8141
  0,
8092
- [_N, _AIg, _AHGg, _Ch, _CAo, _IMn, _QIue, _RC, _ATR, _SCA, _SSA, _ARct, _CTonta, _AAi],
8142
+ [_N, _AIg, _AHGg, _Ch, _CAo, _IMn, _QIue, _RCo, _ATR, _SCA, _SSA, _ARct, _CTonta, _AAi],
8093
8143
  [[() => NameCriteria$, 0], 64 | 0, () => AgentHierarchyGroups$, 64 | 0, [() => ContactAnalysis$, 0], 64 | 0, 64 | 0, () => SearchableRoutingCriteria$, () => SearchContactsAdditionalTimeRange$, [() => SearchableContactAttributes$, 0], [() => SearchableSegmentAttributes$, 0], 64 | 0, () => ControlPlaneTagFilter$, () => AiAgentsCriteria$]
8094
8144
  ];
8095
8145
  var SearchDataTablesRequest$ = [3, n0, _SDTR,
8096
8146
  0,
8097
- [_II, _NT, _MR, _SF, _SCe],
8147
+ [_II, _NT, _MR, _SF, _SCea],
8098
8148
  [0, 0, 1, () => DataTableSearchFilter$, () => DataTableSearchCriteria$], 1
8099
8149
  ];
8100
8150
  var SearchDataTablesResponse$ = [3, n0, _SDTRe,
@@ -8104,7 +8154,7 @@ var SearchDataTablesResponse$ = [3, n0, _SDTRe,
8104
8154
  ];
8105
8155
  var SearchEmailAddressesRequest$ = [3, n0, _SEAR,
8106
8156
  0,
8107
- [_II, _MR, _NT, _SCe, _SF],
8157
+ [_II, _MR, _NT, _SCea, _SF],
8108
8158
  [0, 1, 0, () => EmailAddressSearchCriteria$, () => EmailAddressSearchFilter$], 1
8109
8159
  ];
8110
8160
  var SearchEmailAddressesResponse$ = [3, n0, _SEARe,
@@ -8114,7 +8164,7 @@ var SearchEmailAddressesResponse$ = [3, n0, _SEARe,
8114
8164
  ];
8115
8165
  var SearchEvaluationFormsRequest$ = [3, n0, _SEFR,
8116
8166
  0,
8117
- [_II, _NT, _MR, _SCe, _SF],
8167
+ [_II, _NT, _MR, _SCea, _SF],
8118
8168
  [0, 0, 1, () => EvaluationFormSearchCriteria$, () => EvaluationFormSearchFilter$], 1
8119
8169
  ];
8120
8170
  var SearchEvaluationFormsResponse$ = [3, n0, _SEFRe,
@@ -8124,7 +8174,7 @@ var SearchEvaluationFormsResponse$ = [3, n0, _SEFRe,
8124
8174
  ];
8125
8175
  var SearchHoursOfOperationOverridesRequest$ = [3, n0, _SHOOOR,
8126
8176
  0,
8127
- [_II, _NT, _MR, _SF, _SCe],
8177
+ [_II, _NT, _MR, _SF, _SCea],
8128
8178
  [0, 0, 1, () => HoursOfOperationSearchFilter$, () => HoursOfOperationOverrideSearchCriteria$], 1
8129
8179
  ];
8130
8180
  var SearchHoursOfOperationOverridesResponse$ = [3, n0, _SHOOORe,
@@ -8134,7 +8184,7 @@ var SearchHoursOfOperationOverridesResponse$ = [3, n0, _SHOOORe,
8134
8184
  ];
8135
8185
  var SearchHoursOfOperationsRequest$ = [3, n0, _SHOOR,
8136
8186
  0,
8137
- [_II, _NT, _MR, _SF, _SCe],
8187
+ [_II, _NT, _MR, _SF, _SCea],
8138
8188
  [0, 0, 1, () => HoursOfOperationSearchFilter$, () => HoursOfOperationSearchCriteria$], 1
8139
8189
  ];
8140
8190
  var SearchHoursOfOperationsResponse$ = [3, n0, _SHOORe,
@@ -8144,7 +8194,7 @@ var SearchHoursOfOperationsResponse$ = [3, n0, _SHOORe,
8144
8194
  ];
8145
8195
  var SearchNotificationsRequest$ = [3, n0, _SNR,
8146
8196
  0,
8147
- [_II, _NT, _MR, _SF, _SCe],
8197
+ [_II, _NT, _MR, _SF, _SCea],
8148
8198
  [0, 0, 1, () => NotificationSearchFilter$, () => NotificationSearchCriteria$], 1
8149
8199
  ];
8150
8200
  var SearchNotificationsResponse$ = [3, n0, _SNRe,
@@ -8154,7 +8204,7 @@ var SearchNotificationsResponse$ = [3, n0, _SNRe,
8154
8204
  ];
8155
8205
  var SearchPredefinedAttributesRequest$ = [3, n0, _SPAR,
8156
8206
  0,
8157
- [_II, _NT, _MR, _SCe],
8207
+ [_II, _NT, _MR, _SCea],
8158
8208
  [0, 0, 1, () => PredefinedAttributeSearchCriteria$], 1
8159
8209
  ];
8160
8210
  var SearchPredefinedAttributesResponse$ = [3, n0, _SPARe,
@@ -8164,7 +8214,7 @@ var SearchPredefinedAttributesResponse$ = [3, n0, _SPARe,
8164
8214
  ];
8165
8215
  var SearchPromptsRequest$ = [3, n0, _SPR,
8166
8216
  0,
8167
- [_II, _NT, _MR, _SF, _SCe],
8217
+ [_II, _NT, _MR, _SF, _SCea],
8168
8218
  [0, 0, 1, () => PromptSearchFilter$, () => PromptSearchCriteria$], 1
8169
8219
  ];
8170
8220
  var SearchPromptsResponse$ = [3, n0, _SPRe,
@@ -8174,7 +8224,7 @@ var SearchPromptsResponse$ = [3, n0, _SPRe,
8174
8224
  ];
8175
8225
  var SearchQueuesRequest$ = [3, n0, _SQR,
8176
8226
  0,
8177
- [_II, _NT, _MR, _SF, _SCe],
8227
+ [_II, _NT, _MR, _SF, _SCea],
8178
8228
  [0, 0, 1, () => QueueSearchFilter$, () => QueueSearchCriteria$], 1
8179
8229
  ];
8180
8230
  var SearchQueuesResponse$ = [3, n0, _SQRe,
@@ -8184,7 +8234,7 @@ var SearchQueuesResponse$ = [3, n0, _SQRe,
8184
8234
  ];
8185
8235
  var SearchQuickConnectsRequest$ = [3, n0, _SQCR,
8186
8236
  0,
8187
- [_II, _NT, _MR, _SF, _SCe],
8237
+ [_II, _NT, _MR, _SF, _SCea],
8188
8238
  [0, 0, 1, () => QuickConnectSearchFilter$, () => QuickConnectSearchCriteria$], 1
8189
8239
  ];
8190
8240
  var SearchQuickConnectsResponse$ = [3, n0, _SQCRe,
@@ -8194,7 +8244,7 @@ var SearchQuickConnectsResponse$ = [3, n0, _SQCRe,
8194
8244
  ];
8195
8245
  var SearchResourceTagsRequest$ = [3, n0, _SRTR,
8196
8246
  0,
8197
- [_II, _RTes, _NT, _MR, _SCe],
8247
+ [_II, _RTes, _NT, _MR, _SCea],
8198
8248
  [0, 64 | 0, 0, 1, () => ResourceTagsSearchCriteria$], 1
8199
8249
  ];
8200
8250
  var SearchResourceTagsResponse$ = [3, n0, _SRTRe,
@@ -8204,7 +8254,7 @@ var SearchResourceTagsResponse$ = [3, n0, _SRTRe,
8204
8254
  ];
8205
8255
  var SearchRoutingProfilesRequest$ = [3, n0, _SRPR,
8206
8256
  0,
8207
- [_II, _NT, _MR, _SF, _SCe],
8257
+ [_II, _NT, _MR, _SF, _SCea],
8208
8258
  [0, 0, 1, () => RoutingProfileSearchFilter$, () => RoutingProfileSearchCriteria$], 1
8209
8259
  ];
8210
8260
  var SearchRoutingProfilesResponse$ = [3, n0, _SRPRe,
@@ -8214,7 +8264,7 @@ var SearchRoutingProfilesResponse$ = [3, n0, _SRPRe,
8214
8264
  ];
8215
8265
  var SearchSecurityProfilesRequest$ = [3, n0, _SSPR,
8216
8266
  0,
8217
- [_II, _NT, _MR, _SCe, _SF],
8267
+ [_II, _NT, _MR, _SCea, _SF],
8218
8268
  [0, 0, 1, () => SecurityProfileSearchCriteria$, () => SecurityProfilesSearchFilter$], 1
8219
8269
  ];
8220
8270
  var SearchSecurityProfilesResponse$ = [3, n0, _SSPRe,
@@ -8224,7 +8274,7 @@ var SearchSecurityProfilesResponse$ = [3, n0, _SSPRe,
8224
8274
  ];
8225
8275
  var SearchTestCasesRequest$ = [3, n0, _STCR,
8226
8276
  0,
8227
- [_II, _NT, _MR, _SF, _SCe],
8277
+ [_II, _NT, _MR, _SF, _SCea],
8228
8278
  [0, 0, 1, () => TestCaseSearchFilter$, () => TestCaseSearchCriteria$], 1
8229
8279
  ];
8230
8280
  var SearchTestCasesResponse$ = [3, n0, _STCRe,
@@ -8234,7 +8284,7 @@ var SearchTestCasesResponse$ = [3, n0, _STCRe,
8234
8284
  ];
8235
8285
  var SearchUserHierarchyGroupsRequest$ = [3, n0, _SUHGR,
8236
8286
  0,
8237
- [_II, _NT, _MR, _SF, _SCe],
8287
+ [_II, _NT, _MR, _SF, _SCea],
8238
8288
  [0, 0, 1, () => UserHierarchyGroupSearchFilter$, () => UserHierarchyGroupSearchCriteria$], 1
8239
8289
  ];
8240
8290
  var SearchUserHierarchyGroupsResponse$ = [3, n0, _SUHGRe,
@@ -8244,7 +8294,7 @@ var SearchUserHierarchyGroupsResponse$ = [3, n0, _SUHGRe,
8244
8294
  ];
8245
8295
  var SearchUsersRequest$ = [3, n0, _SUR,
8246
8296
  0,
8247
- [_II, _NT, _MR, _SF, _SCe],
8297
+ [_II, _NT, _MR, _SF, _SCea],
8248
8298
  [0, 0, 1, () => UserSearchFilter$, () => UserSearchCriteria$], 1
8249
8299
  ];
8250
8300
  var SearchUsersResponse$ = [3, n0, _SURe,
@@ -8254,7 +8304,7 @@ var SearchUsersResponse$ = [3, n0, _SURe,
8254
8304
  ];
8255
8305
  var SearchViewsRequest$ = [3, n0, _SVR,
8256
8306
  0,
8257
- [_II, _NT, _MR, _SF, _SCe],
8307
+ [_II, _NT, _MR, _SF, _SCea],
8258
8308
  [0, 0, 1, () => ViewSearchFilter$, () => ViewSearchCriteria$], 1
8259
8309
  ];
8260
8310
  var SearchViewsResponse$ = [3, n0, _SVRe,
@@ -8264,7 +8314,7 @@ var SearchViewsResponse$ = [3, n0, _SVRe,
8264
8314
  ];
8265
8315
  var SearchVocabulariesRequest$ = [3, n0, _SVRea,
8266
8316
  0,
8267
- [_II, _MR, _NT, _S, _NSW, _LC],
8317
+ [_II, _MR, _NT, _S, _NSW, _LCa],
8268
8318
  [[0, 1], 1, 0, 0, 0, 0], 1
8269
8319
  ];
8270
8320
  var SearchVocabulariesResponse$ = [3, n0, _SVRear,
@@ -8274,7 +8324,7 @@ var SearchVocabulariesResponse$ = [3, n0, _SVRear,
8274
8324
  ];
8275
8325
  var SearchWorkspaceAssociationsRequest$ = [3, n0, _SWAR,
8276
8326
  0,
8277
- [_II, _NT, _MR, _SF, _SCe],
8327
+ [_II, _NT, _MR, _SF, _SCea],
8278
8328
  [0, 0, 1, () => WorkspaceAssociationSearchFilter$, () => WorkspaceAssociationSearchCriteria$], 1
8279
8329
  ];
8280
8330
  var SearchWorkspaceAssociationsResponse$ = [3, n0, _SWARe,
@@ -8284,7 +8334,7 @@ var SearchWorkspaceAssociationsResponse$ = [3, n0, _SWARe,
8284
8334
  ];
8285
8335
  var SearchWorkspacesRequest$ = [3, n0, _SWR,
8286
8336
  0,
8287
- [_II, _NT, _MR, _SF, _SCe],
8337
+ [_II, _NT, _MR, _SF, _SCea],
8288
8338
  [0, 0, 1, () => WorkspaceSearchFilter$, () => WorkspaceSearchCriteria$], 1
8289
8339
  ];
8290
8340
  var SearchWorkspacesResponse$ = [3, n0, _SWRe,
@@ -8357,6 +8407,11 @@ var SendOutboundEmailResponse$ = [3, n0, _SOERe,
8357
8407
  [],
8358
8408
  []
8359
8409
  ];
8410
+ var SentimentConfiguration$ = [3, n0, _SCe,
8411
+ 0,
8412
+ [_Be],
8413
+ [0], 1
8414
+ ];
8360
8415
  var SignInConfig$ = [3, n0, _SIC,
8361
8416
  0,
8362
8417
  [_Di],
@@ -8402,6 +8457,16 @@ var StartChatContactResponse$ = [3, n0, _SCCRt,
8402
8457
  [_CI, _PI, _PTa, _CFCI],
8403
8458
  [0, 0, 0, 0]
8404
8459
  ];
8460
+ var StartContactConversationalAnalyticsJobRequest$ = [3, n0, _SCCAJR,
8461
+ 0,
8462
+ [_II, _CI, _AMn, _ACna, _CT],
8463
+ [[0, 1], [0, 1], 64 | 0, () => AnalyticsConfiguration$, 0], 4
8464
+ ];
8465
+ var StartContactConversationalAnalyticsJobResponse$ = [3, n0, _SCCAJRt,
8466
+ 0,
8467
+ [_II, _CI],
8468
+ [0, 0]
8469
+ ];
8405
8470
  var StartContactEvaluationRequest$ = [3, n0, _SCERt,
8406
8471
  0,
8407
8472
  [_II, _CI, _EFI, _AEC, _CT, _Ta],
@@ -8627,6 +8692,11 @@ var SuccessfulRequest$ = [3, n0, _SRu,
8627
8692
  [_RIeq, _CI],
8628
8693
  [0, 0]
8629
8694
  ];
8695
+ var SummaryConfiguration$ = [3, n0, _SCu,
8696
+ 0,
8697
+ [_SM],
8698
+ [64 | 0], 1
8699
+ ];
8630
8700
  var SuspendContactRecordingRequest$ = [3, n0, _SCRRu,
8631
8701
  0,
8632
8702
  [_II, _CI, _ICI, _CRT],
@@ -8934,7 +9004,7 @@ var UpdateContactResponse$ = [3, n0, _UCRpd,
8934
9004
  ];
8935
9005
  var UpdateContactRoutingDataRequest$ = [3, n0, _UCRDR,
8936
9006
  0,
8937
- [_II, _CI, _QTAS, _QP, _RC],
9007
+ [_II, _CI, _QTAS, _QP, _RCo],
8938
9008
  [[0, 1], [0, 1], 1, 1, () => RoutingCriteriaInput$], 2
8939
9009
  ];
8940
9010
  var UpdateContactRoutingDataResponse$ = [3, n0, _UCRDRp,
@@ -8994,7 +9064,7 @@ var UpdateEmailAddressMetadataResponse$ = [3, n0, _UEAMRp,
8994
9064
  ];
8995
9065
  var UpdateEvaluationFormRequest$ = [3, n0, _UEFR,
8996
9066
  0,
8997
- [_II, _EFI, _EFV, _Ti, _It, _CNV, _D, _SS, _AEC, _RCe, _ADs, _CT, _TCar, _LCa],
9067
+ [_II, _EFI, _EFV, _Ti, _It, _CNV, _D, _SS, _AEC, _RCe, _ADs, _CT, _TCar, _LC],
8998
9068
  [[0, 1], [0, 1], 1, 0, () => EvaluationFormItemsList, 2, 0, () => EvaluationFormScoringStrategy$, () => EvaluationFormAutoEvaluationConfiguration$, () => EvaluationReviewConfiguration$, 2, [0, 4], () => EvaluationFormTargetConfiguration$, () => EvaluationFormLanguageConfiguration$], 5
8999
9069
  ];
9000
9070
  var UpdateEvaluationFormResponse$ = [3, n0, _UEFRp,
@@ -9454,12 +9524,12 @@ var ViewVersionSummary$ = [3, n0, _VVS,
9454
9524
  ];
9455
9525
  var Vocabulary$ = [3, n0, _Vo,
9456
9526
  0,
9457
- [_N, _I, _A, _LC, _S, _LMT, _FRa, _Co, _Ta],
9527
+ [_N, _I, _A, _LCa, _S, _LMT, _FRa, _Co, _Ta],
9458
9528
  [0, 0, 0, 0, 0, 4, 0, 0, 128 | 0], 6
9459
9529
  ];
9460
9530
  var VocabularySummary$ = [3, n0, _VSo,
9461
9531
  0,
9462
- [_N, _I, _A, _LC, _S, _LMT, _FRa],
9532
+ [_N, _I, _A, _LCa, _S, _LMT, _FRa],
9463
9533
  [0, 0, 0, 0, 0, 4, 0], 6
9464
9534
  ];
9465
9535
  var VoiceCallEntryPointParameters$ = [3, n0, _VCEPP,
@@ -10355,7 +10425,7 @@ var EvaluationFormItemEnablementConditionOperand$ = [4, n0, _EFIECO,
10355
10425
  ];
10356
10426
  var EvaluationFormMultiSelectQuestionAutomationOption$ = [4, n0, _EFMSQAO,
10357
10427
  0,
10358
- [_RCu],
10428
+ [_RCul],
10359
10429
  [() => MultiSelectQuestionRuleCategoryAutomation$]
10360
10430
  ];
10361
10431
  var EvaluationFormNumericQuestionAutomation$ = [4, n0, _EFNQA,
@@ -10370,7 +10440,7 @@ var EvaluationFormQuestionTypeProperties$ = [4, n0, _EFQTP,
10370
10440
  ];
10371
10441
  var EvaluationFormSingleSelectQuestionAutomationOption$ = [4, n0, _EFSSQAO,
10372
10442
  0,
10373
- [_RCu],
10443
+ [_RCul],
10374
10444
  [() => SingleSelectQuestionRuleCategoryAutomation$]
10375
10445
  ];
10376
10446
  var EvaluationQuestionAnswerAnalysisDetails$ = [4, n0, _EQAAD,
@@ -10527,6 +10597,9 @@ var CompleteAttachedFileUpload$ = [9, n0, _CAFU,
10527
10597
  var CreateAgentStatus$ = [9, n0, _CAS,
10528
10598
  { [_h]: ["PUT", "/agent-status/{InstanceId}", 200] }, () => CreateAgentStatusRequest$, () => CreateAgentStatusResponse$
10529
10599
  ];
10600
+ var CreateAttachedFile$ = [9, n0, _CAF,
10601
+ { [_h]: ["PUT", "/attached-files/{InstanceId}/files", 200] }, () => CreateAttachedFileRequest$, () => CreateAttachedFileResponse$
10602
+ ];
10530
10603
  var CreateContact$ = [9, n0, _CCr,
10531
10604
  { [_h]: ["PUT", "/contact/create-contact", 200] }, () => CreateContactRequest$, () => CreateContactResponse$
10532
10605
  ];
@@ -11202,7 +11275,7 @@ var SearchContactFlowModules$ = [9, n0, _SCFM,
11202
11275
  var SearchContactFlows$ = [9, n0, _SCF,
11203
11276
  { [_h]: ["POST", "/search-contact-flows", 200] }, () => SearchContactFlowsRequest$, () => SearchContactFlowsResponse$
11204
11277
  ];
11205
- var SearchContacts$ = [9, n0, _SCea,
11278
+ var SearchContacts$ = [9, n0, _SCear,
11206
11279
  { [_h]: ["POST", "/search-contacts", 200] }, () => SearchContactsRequest$, () => SearchContactsResponse$
11207
11280
  ];
11208
11281
  var SearchDataTables$ = [9, n0, _SDT,
@@ -11277,6 +11350,9 @@ var StartAttachedFileUpload$ = [9, n0, _SAFU,
11277
11350
  var StartChatContact$ = [9, n0, _SCC,
11278
11351
  { [_h]: ["PUT", "/contact/chat", 200] }, () => StartChatContactRequest$, () => StartChatContactResponse$
11279
11352
  ];
11353
+ var StartContactConversationalAnalyticsJob$ = [9, n0, _SCCAJ,
11354
+ { [_h]: ["POST", "/contact/start-conversational-analytics-job/{InstanceId}/{ContactId}", 200] }, () => StartContactConversationalAnalyticsJobRequest$, () => StartContactConversationalAnalyticsJobResponse$
11355
+ ];
11280
11356
  var StartContactEvaluation$ = [9, n0, _SCEt,
11281
11357
  { [_h]: ["PUT", "/contact-evaluations/{InstanceId}", 200] }, () => StartContactEvaluationRequest$, () => StartContactEvaluationResponse$
11282
11358
  ];
@@ -11570,6 +11646,7 @@ const getRuntimeConfig$1 = (config) => {
11570
11646
  serviceTarget: "AmazonConnectService",
11571
11647
  },
11572
11648
  serviceId: config?.serviceId ?? "Connect",
11649
+ sha256: config?.sha256 ?? Sha256,
11573
11650
  urlParser: config?.urlParser ?? parseUrl,
11574
11651
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
11575
11652
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -11603,7 +11680,6 @@ const getRuntimeConfig = (config) => {
11603
11680
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
11604
11681
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
11605
11682
  }, config),
11606
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
11607
11683
  streamCollector: config?.streamCollector ?? streamCollector,
11608
11684
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
11609
11685
  useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -12087,6 +12163,18 @@ class CreateAgentStatusCommand extends Command
12087
12163
  .build() {
12088
12164
  }
12089
12165
 
12166
+ class CreateAttachedFileCommand extends Command
12167
+ .classBuilder()
12168
+ .ep(commonParams)
12169
+ .m(function (Command, cs, config, o) {
12170
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
12171
+ })
12172
+ .s("AmazonConnectService", "CreateAttachedFile", {})
12173
+ .n("ConnectClient", "CreateAttachedFileCommand")
12174
+ .sc(CreateAttachedFile$)
12175
+ .build() {
12176
+ }
12177
+
12090
12178
  class CreateContactCommand extends Command
12091
12179
  .classBuilder()
12092
12180
  .ep(commonParams)
@@ -15087,6 +15175,18 @@ class StartChatContactCommand extends Command
15087
15175
  .build() {
15088
15176
  }
15089
15177
 
15178
+ class StartContactConversationalAnalyticsJobCommand extends Command
15179
+ .classBuilder()
15180
+ .ep(commonParams)
15181
+ .m(function (Command, cs, config, o) {
15182
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15183
+ })
15184
+ .s("AmazonConnectService", "StartContactConversationalAnalyticsJob", {})
15185
+ .n("ConnectClient", "StartContactConversationalAnalyticsJobCommand")
15186
+ .sc(StartContactConversationalAnalyticsJob$)
15187
+ .build() {
15188
+ }
15189
+
15090
15190
  class StartContactEvaluationCommand extends Command
15091
15191
  .classBuilder()
15092
15192
  .ep(commonParams)
@@ -16361,6 +16461,7 @@ const commands = {
16361
16461
  ClaimPhoneNumberCommand,
16362
16462
  CompleteAttachedFileUploadCommand,
16363
16463
  CreateAgentStatusCommand,
16464
+ CreateAttachedFileCommand,
16364
16465
  CreateContactCommand,
16365
16466
  CreateContactFlowCommand,
16366
16467
  CreateContactFlowModuleCommand,
@@ -16611,6 +16712,7 @@ const commands = {
16611
16712
  SendOutboundEmailCommand,
16612
16713
  StartAttachedFileUploadCommand,
16613
16714
  StartChatContactCommand,
16715
+ StartContactConversationalAnalyticsJobCommand,
16614
16716
  StartContactEvaluationCommand,
16615
16717
  StartContactMediaProcessingCommand,
16616
16718
  StartContactRecordingCommand,
@@ -16980,6 +17082,7 @@ const FileUseCaseType = {
16980
17082
  EMAIL_MESSAGE_PLAIN_TEXT: "EMAIL_MESSAGE_PLAIN_TEXT",
16981
17083
  EMAIL_MESSAGE_PLAIN_TEXT_REDACTED: "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED",
16982
17084
  EMAIL_MESSAGE_REDACTED: "EMAIL_MESSAGE_REDACTED",
17085
+ VOICE_RECORDING: "VOICE_RECORDING",
16983
17086
  };
16984
17087
  const ListFlowAssociationResourceType = {
16985
17088
  ANALYTICS_CONNECTOR: "ANALYTICS_CONNECTOR",
@@ -18063,6 +18166,30 @@ const ResponseMode = {
18063
18166
  COMPLETE: "COMPLETE",
18064
18167
  INCREMENTAL: "INCREMENTAL",
18065
18168
  };
18169
+ const Behavior = {
18170
+ Disable: "Disable",
18171
+ Enable: "Enable",
18172
+ };
18173
+ const MaskMode = {
18174
+ EntityType: "EntityType",
18175
+ PII: "PII",
18176
+ };
18177
+ const Policy = {
18178
+ None: "None",
18179
+ RedactedAndOriginal: "RedactedAndOriginal",
18180
+ RedactedOnly: "RedactedOnly",
18181
+ };
18182
+ const SummaryMode = {
18183
+ AutomatedInteraction: "AutomatedInteraction",
18184
+ ContactChain: "ContactChain",
18185
+ PostContact: "PostContact",
18186
+ };
18187
+ const AnalyticsMode = {
18188
+ AutomatedInteraction: "AutomatedInteraction",
18189
+ ContactLens: "ContactLens",
18190
+ PostContact: "PostContact",
18191
+ RealTime: "RealTime",
18192
+ };
18066
18193
  const ContactMediaProcessingFailureMode = {
18067
18194
  DELIVER_UNPROCESSED_MESSAGE: "DELIVER_UNPROCESSED_MESSAGE",
18068
18195
  DO_NOT_DELIVER_UNPROCESSED_MESSAGE: "DO_NOT_DELIVER_UNPROCESSED_MESSAGE",
@@ -18138,8 +18265,10 @@ exports.AliasConfiguration$ = AliasConfiguration$;
18138
18265
  exports.AllowedCapabilities$ = AllowedCapabilities$;
18139
18266
  exports.AllowedExtension$ = AllowedExtension$;
18140
18267
  exports.AllowedUserAction = AllowedUserAction;
18268
+ exports.AnalyticsConfiguration$ = AnalyticsConfiguration$;
18141
18269
  exports.AnalyticsDataAssociationResult$ = AnalyticsDataAssociationResult$;
18142
18270
  exports.AnalyticsDataSetsResult$ = AnalyticsDataSetsResult$;
18271
+ exports.AnalyticsMode = AnalyticsMode;
18143
18272
  exports.AnswerMachineDetectionConfig$ = AnswerMachineDetectionConfig$;
18144
18273
  exports.AnsweringMachineDetectionStatus = AnsweringMachineDetectionStatus;
18145
18274
  exports.Application$ = Application$;
@@ -18283,6 +18412,7 @@ exports.BatchUpdateDataTableValueFailureResult$ = BatchUpdateDataTableValueFailu
18283
18412
  exports.BatchUpdateDataTableValueRequest$ = BatchUpdateDataTableValueRequest$;
18284
18413
  exports.BatchUpdateDataTableValueResponse$ = BatchUpdateDataTableValueResponse$;
18285
18414
  exports.BatchUpdateDataTableValueSuccessResult$ = BatchUpdateDataTableValueSuccessResult$;
18415
+ exports.Behavior = Behavior;
18286
18416
  exports.BehaviorType = BehaviorType;
18287
18417
  exports.BooleanComparisonType = BooleanComparisonType;
18288
18418
  exports.BooleanCondition$ = BooleanCondition$;
@@ -18378,6 +18508,10 @@ exports.CreateAgentStatus$ = CreateAgentStatus$;
18378
18508
  exports.CreateAgentStatusCommand = CreateAgentStatusCommand;
18379
18509
  exports.CreateAgentStatusRequest$ = CreateAgentStatusRequest$;
18380
18510
  exports.CreateAgentStatusResponse$ = CreateAgentStatusResponse$;
18511
+ exports.CreateAttachedFile$ = CreateAttachedFile$;
18512
+ exports.CreateAttachedFileCommand = CreateAttachedFileCommand;
18513
+ exports.CreateAttachedFileRequest$ = CreateAttachedFileRequest$;
18514
+ exports.CreateAttachedFileResponse$ = CreateAttachedFileResponse$;
18381
18515
  exports.CreateCaseActionDefinition$ = CreateCaseActionDefinition$;
18382
18516
  exports.CreateContact$ = CreateContact$;
18383
18517
  exports.CreateContactCommand = CreateContactCommand;
@@ -19179,6 +19313,7 @@ exports.IvrRecordingTrack = IvrRecordingTrack;
19179
19313
  exports.KinesisFirehoseConfig$ = KinesisFirehoseConfig$;
19180
19314
  exports.KinesisStreamConfig$ = KinesisStreamConfig$;
19181
19315
  exports.KinesisVideoStreamConfig$ = KinesisVideoStreamConfig$;
19316
+ exports.LanguageConfiguration$ = LanguageConfiguration$;
19182
19317
  exports.LexBot$ = LexBot$;
19183
19318
  exports.LexBotConfig$ = LexBotConfig$;
19184
19319
  exports.LexV2Bot$ = LexV2Bot$;
@@ -19465,6 +19600,7 @@ exports.ListWorkspacesCommand = ListWorkspacesCommand;
19465
19600
  exports.ListWorkspacesRequest$ = ListWorkspacesRequest$;
19466
19601
  exports.ListWorkspacesResponse$ = ListWorkspacesResponse$;
19467
19602
  exports.LocaleCode = LocaleCode;
19603
+ exports.MaskMode = MaskMode;
19468
19604
  exports.MatchCriteria$ = MatchCriteria$;
19469
19605
  exports.MaximumResultReturnedException = MaximumResultReturnedException;
19470
19606
  exports.MaximumResultReturnedException$ = MaximumResultReturnedException$;
@@ -19561,6 +19697,7 @@ exports.PhoneNumberSummary$ = PhoneNumberSummary$;
19561
19697
  exports.PhoneNumberType = PhoneNumberType;
19562
19698
  exports.PhoneNumberWorkflowStatus = PhoneNumberWorkflowStatus;
19563
19699
  exports.PhoneType = PhoneType;
19700
+ exports.Policy = Policy;
19564
19701
  exports.PostAcceptTimeoutConfig$ = PostAcceptTimeoutConfig$;
19565
19702
  exports.PredefinedAttribute$ = PredefinedAttribute$;
19566
19703
  exports.PredefinedAttributeConfiguration$ = PredefinedAttributeConfiguration$;
@@ -19638,6 +19775,7 @@ exports.RecordingStatus = RecordingStatus;
19638
19775
  exports.RecurrenceConfig$ = RecurrenceConfig$;
19639
19776
  exports.RecurrenceFrequency = RecurrenceFrequency;
19640
19777
  exports.RecurrencePattern$ = RecurrencePattern$;
19778
+ exports.RedactionConfiguration$ = RedactionConfiguration$;
19641
19779
  exports.Reference$ = Reference$;
19642
19780
  exports.ReferenceStatus = ReferenceStatus;
19643
19781
  exports.ReferenceSummary$ = ReferenceSummary$;
@@ -19692,6 +19830,7 @@ exports.RuleAction$ = RuleAction$;
19692
19830
  exports.RulePublishStatus = RulePublishStatus;
19693
19831
  exports.RuleSummary$ = RuleSummary$;
19694
19832
  exports.RuleTriggerEventSource$ = RuleTriggerEventSource$;
19833
+ exports.RulesConfiguration$ = RulesConfiguration$;
19695
19834
  exports.S3Config$ = S3Config$;
19696
19835
  exports.ScreenShareCapability = ScreenShareCapability;
19697
19836
  exports.SearchAgentStatuses$ = SearchAgentStatuses$;
@@ -19831,6 +19970,7 @@ exports.SendOutboundEmail$ = SendOutboundEmail$;
19831
19970
  exports.SendOutboundEmailCommand = SendOutboundEmailCommand;
19832
19971
  exports.SendOutboundEmailRequest$ = SendOutboundEmailRequest$;
19833
19972
  exports.SendOutboundEmailResponse$ = SendOutboundEmailResponse$;
19973
+ exports.SentimentConfiguration$ = SentimentConfiguration$;
19834
19974
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
19835
19975
  exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
19836
19976
  exports.ServiceQuotaExceededExceptionReason$ = ServiceQuotaExceededExceptionReason$;
@@ -19853,6 +19993,10 @@ exports.StartChatContact$ = StartChatContact$;
19853
19993
  exports.StartChatContactCommand = StartChatContactCommand;
19854
19994
  exports.StartChatContactRequest$ = StartChatContactRequest$;
19855
19995
  exports.StartChatContactResponse$ = StartChatContactResponse$;
19996
+ exports.StartContactConversationalAnalyticsJob$ = StartContactConversationalAnalyticsJob$;
19997
+ exports.StartContactConversationalAnalyticsJobCommand = StartContactConversationalAnalyticsJobCommand;
19998
+ exports.StartContactConversationalAnalyticsJobRequest$ = StartContactConversationalAnalyticsJobRequest$;
19999
+ exports.StartContactConversationalAnalyticsJobResponse$ = StartContactConversationalAnalyticsJobResponse$;
19856
20000
  exports.StartContactEvaluation$ = StartContactEvaluation$;
19857
20001
  exports.StartContactEvaluationCommand = StartContactEvaluationCommand;
19858
20002
  exports.StartContactEvaluationRequest$ = StartContactEvaluationRequest$;
@@ -19940,6 +20084,8 @@ exports.SubmitContactEvaluationRequest$ = SubmitContactEvaluationRequest$;
19940
20084
  exports.SubmitContactEvaluationResponse$ = SubmitContactEvaluationResponse$;
19941
20085
  exports.SuccessfulBatchAssociationSummary$ = SuccessfulBatchAssociationSummary$;
19942
20086
  exports.SuccessfulRequest$ = SuccessfulRequest$;
20087
+ exports.SummaryConfiguration$ = SummaryConfiguration$;
20088
+ exports.SummaryMode = SummaryMode;
19943
20089
  exports.SuspendContactRecording$ = SuspendContactRecording$;
19944
20090
  exports.SuspendContactRecordingCommand = SuspendContactRecordingCommand;
19945
20091
  exports.SuspendContactRecordingRequest$ = SuspendContactRecordingRequest$;