@aws-sdk/client-wisdom 3.948.0 → 3.953.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 (61) hide show
  1. package/dist-cjs/index.js +611 -404
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAssistantAssociationCommand.js +2 -2
  4. package/dist-es/commands/CreateAssistantCommand.js +2 -2
  5. package/dist-es/commands/CreateContentCommand.js +2 -2
  6. package/dist-es/commands/CreateKnowledgeBaseCommand.js +2 -2
  7. package/dist-es/commands/CreateQuickResponseCommand.js +2 -2
  8. package/dist-es/commands/CreateSessionCommand.js +2 -2
  9. package/dist-es/commands/DeleteAssistantAssociationCommand.js +2 -2
  10. package/dist-es/commands/DeleteAssistantCommand.js +2 -2
  11. package/dist-es/commands/DeleteContentCommand.js +2 -2
  12. package/dist-es/commands/DeleteImportJobCommand.js +2 -2
  13. package/dist-es/commands/DeleteKnowledgeBaseCommand.js +2 -2
  14. package/dist-es/commands/DeleteQuickResponseCommand.js +2 -2
  15. package/dist-es/commands/GetAssistantAssociationCommand.js +2 -2
  16. package/dist-es/commands/GetAssistantCommand.js +2 -2
  17. package/dist-es/commands/GetContentCommand.js +2 -2
  18. package/dist-es/commands/GetContentSummaryCommand.js +2 -2
  19. package/dist-es/commands/GetImportJobCommand.js +2 -2
  20. package/dist-es/commands/GetKnowledgeBaseCommand.js +2 -2
  21. package/dist-es/commands/GetQuickResponseCommand.js +2 -2
  22. package/dist-es/commands/GetRecommendationsCommand.js +2 -2
  23. package/dist-es/commands/GetSessionCommand.js +2 -2
  24. package/dist-es/commands/ListAssistantAssociationsCommand.js +2 -2
  25. package/dist-es/commands/ListAssistantsCommand.js +2 -2
  26. package/dist-es/commands/ListContentsCommand.js +2 -2
  27. package/dist-es/commands/ListImportJobsCommand.js +2 -2
  28. package/dist-es/commands/ListKnowledgeBasesCommand.js +2 -2
  29. package/dist-es/commands/ListQuickResponsesCommand.js +2 -2
  30. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  31. package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +2 -2
  32. package/dist-es/commands/QueryAssistantCommand.js +2 -2
  33. package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +2 -2
  34. package/dist-es/commands/SearchContentCommand.js +2 -2
  35. package/dist-es/commands/SearchQuickResponsesCommand.js +2 -2
  36. package/dist-es/commands/SearchSessionsCommand.js +2 -2
  37. package/dist-es/commands/StartContentUploadCommand.js +2 -2
  38. package/dist-es/commands/StartImportJobCommand.js +2 -2
  39. package/dist-es/commands/TagResourceCommand.js +2 -2
  40. package/dist-es/commands/UntagResourceCommand.js +2 -2
  41. package/dist-es/commands/UpdateContentCommand.js +2 -2
  42. package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -2
  43. package/dist-es/commands/UpdateQuickResponseCommand.js +2 -2
  44. package/dist-es/index.js +1 -0
  45. package/dist-es/runtimeConfig.shared.js +6 -1
  46. package/dist-es/schemas/schemas_0.js +387 -359
  47. package/dist-types/WisdomClient.d.ts +1 -10
  48. package/dist-types/index.d.ts +1 -0
  49. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  50. package/dist-types/runtimeConfig.d.ts +6 -2
  51. package/dist-types/runtimeConfig.native.d.ts +6 -2
  52. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  53. package/dist-types/schemas/schemas_0.d.ts +180 -215
  54. package/dist-types/ts3.4/WisdomClient.d.ts +0 -4
  55. package/dist-types/ts3.4/index.d.ts +1 -0
  56. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +179 -217
  61. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class WisdomClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let WisdomServiceException$1 = class WisdomServiceException extends smithyClient.ServiceException {
113
+ class WisdomServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, WisdomServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends WisdomServiceException$1 {
120
+ class AccessDeniedException extends WisdomServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends WisdomServiceE
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends WisdomServiceException$1 {
131
+ }
132
+ class ConflictException extends WisdomServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends WisdomServiceException
140
140
  });
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
- };
144
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends WisdomServiceException$1 {
143
+ }
144
+ class ResourceNotFoundException extends WisdomServiceException {
145
145
  name = "ResourceNotFoundException";
146
146
  $fault = "client";
147
147
  resourceName;
@@ -154,8 +154,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Wisdom
154
154
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
155
155
  this.resourceName = opts.resourceName;
156
156
  }
157
- };
158
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends WisdomServiceException$1 {
157
+ }
158
+ class ServiceQuotaExceededException extends WisdomServiceException {
159
159
  name = "ServiceQuotaExceededException";
160
160
  $fault = "client";
161
161
  constructor(opts) {
@@ -166,8 +166,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
166
166
  });
167
167
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
168
168
  }
169
- };
170
- let ValidationException$1 = class ValidationException extends WisdomServiceException$1 {
169
+ }
170
+ class ValidationException extends WisdomServiceException {
171
171
  name = "ValidationException";
172
172
  $fault = "client";
173
173
  constructor(opts) {
@@ -178,8 +178,8 @@ let ValidationException$1 = class ValidationException extends WisdomServiceExcep
178
178
  });
179
179
  Object.setPrototypeOf(this, ValidationException.prototype);
180
180
  }
181
- };
182
- let RequestTimeoutException$1 = class RequestTimeoutException extends WisdomServiceException$1 {
181
+ }
182
+ class RequestTimeoutException extends WisdomServiceException {
183
183
  name = "RequestTimeoutException";
184
184
  $fault = "client";
185
185
  $retryable = {};
@@ -191,8 +191,8 @@ let RequestTimeoutException$1 = class RequestTimeoutException extends WisdomServ
191
191
  });
192
192
  Object.setPrototypeOf(this, RequestTimeoutException.prototype);
193
193
  }
194
- };
195
- let PreconditionFailedException$1 = class PreconditionFailedException extends WisdomServiceException$1 {
194
+ }
195
+ class PreconditionFailedException extends WisdomServiceException {
196
196
  name = "PreconditionFailedException";
197
197
  $fault = "client";
198
198
  constructor(opts) {
@@ -203,8 +203,8 @@ let PreconditionFailedException$1 = class PreconditionFailedException extends Wi
203
203
  });
204
204
  Object.setPrototypeOf(this, PreconditionFailedException.prototype);
205
205
  }
206
- };
207
- let TooManyTagsException$1 = class TooManyTagsException extends WisdomServiceException$1 {
206
+ }
207
+ class TooManyTagsException extends WisdomServiceException {
208
208
  name = "TooManyTagsException";
209
209
  $fault = "client";
210
210
  resourceName;
@@ -217,7 +217,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends WisdomServiceExc
217
217
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
218
218
  this.resourceName = opts.resourceName;
219
219
  }
220
- };
220
+ }
221
221
 
222
222
  const _AAD = "AssistantAssociationData";
223
223
  const _AAID = "AssistantAssociationInputData";
@@ -564,46 +564,46 @@ var QueryText = [0, n0, _QT, 8, 0];
564
564
  var QuickResponseContent = [0, n0, _QRC, 8, 0];
565
565
  var SensitiveString = [0, n0, _SS, 8, 0];
566
566
  var Url = [0, n0, _U, 8, 0];
567
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
568
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
569
- var AppIntegrationsConfiguration = [3, n0, _AIC, 0, [_aIA, _oF], [0, 64 | 0]];
570
- var AssistantAssociationData = [
567
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
568
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
569
+ var AppIntegrationsConfiguration$ = [3, n0, _AIC, 0, [_aIA, _oF], [0, 64 | 0]];
570
+ var AssistantAssociationData$ = [
571
571
  3,
572
572
  n0,
573
573
  _AAD,
574
574
  0,
575
575
  [_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
576
- [0, 0, 0, 0, 0, () => AssistantAssociationOutputData, 128 | 0],
576
+ [0, 0, 0, 0, 0, () => AssistantAssociationOutputData$, 128 | 0],
577
577
  ];
578
- var AssistantAssociationSummary = [
578
+ var AssistantAssociationSummary$ = [
579
579
  3,
580
580
  n0,
581
581
  _AAS,
582
582
  0,
583
583
  [_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
584
- [0, 0, 0, 0, 0, () => AssistantAssociationOutputData, 128 | 0],
584
+ [0, 0, 0, 0, 0, () => AssistantAssociationOutputData$, 128 | 0],
585
585
  ];
586
- var AssistantData = [
586
+ var AssistantData$ = [
587
587
  3,
588
588
  n0,
589
589
  _AD,
590
590
  0,
591
591
  [_aI, _aA, _n, _ty, _s, _d, _t, _sSEC, _iC],
592
- [0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration, () => AssistantIntegrationConfiguration],
592
+ [0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$],
593
593
  ];
594
- var AssistantIntegrationConfiguration = [3, n0, _AICs, 0, [_tIA], [0]];
595
- var AssistantSummary = [
594
+ var AssistantIntegrationConfiguration$ = [3, n0, _AICs, 0, [_tIA], [0]];
595
+ var AssistantSummary$ = [
596
596
  3,
597
597
  n0,
598
598
  _AS,
599
599
  0,
600
600
  [_aI, _aA, _n, _ty, _s, _d, _t, _sSEC, _iC],
601
- [0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration, () => AssistantIntegrationConfiguration],
601
+ [0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$],
602
602
  ];
603
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
604
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
605
- var ConnectConfiguration = [3, n0, _CC, 0, [_iI], [0]];
606
- var ContentData = [
603
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
604
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
605
+ var ConnectConfiguration$ = [3, n0, _CC, 0, [_iI], [0]];
606
+ var ContentData$ = [
607
607
  3,
608
608
  n0,
609
609
  _CD,
@@ -611,8 +611,8 @@ var ContentData = [
611
611
  [_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _s, _me, _t, _lOU, _u, _uE],
612
612
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, [() => Url, 0], 7],
613
613
  ];
614
- var ContentReference = [3, n0, _CR, 0, [_kBA, _kBI, _cA, _cI], [0, 0, 0, 0]];
615
- var ContentSummary = [
614
+ var ContentReference$ = [3, n0, _CR, 0, [_kBA, _kBI, _cA, _cI], [0, 0, 0, 0]];
615
+ var ContentSummary$ = [
616
616
  3,
617
617
  n0,
618
618
  _CS,
@@ -620,32 +620,32 @@ var ContentSummary = [
620
620
  [_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _s, _me, _t],
621
621
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0],
622
622
  ];
623
- var CreateAssistantAssociationRequest = [
623
+ var CreateAssistantAssociationRequest$ = [
624
624
  3,
625
625
  n0,
626
626
  _CAAR,
627
627
  0,
628
628
  [_aI, _aT, _a, _cTl, _t],
629
- [[0, 1], 0, () => AssistantAssociationInputData, [0, 4], 128 | 0],
629
+ [[0, 1], 0, () => AssistantAssociationInputData$, [0, 4], 128 | 0],
630
630
  ];
631
- var CreateAssistantAssociationResponse = [
631
+ var CreateAssistantAssociationResponse$ = [
632
632
  3,
633
633
  n0,
634
634
  _CAARr,
635
635
  0,
636
636
  [_aAs],
637
- [() => AssistantAssociationData],
637
+ [() => AssistantAssociationData$],
638
638
  ];
639
- var CreateAssistantRequest = [
639
+ var CreateAssistantRequest$ = [
640
640
  3,
641
641
  n0,
642
642
  _CAR,
643
643
  0,
644
644
  [_cTl, _n, _ty, _d, _t, _sSEC],
645
- [[0, 4], 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration],
645
+ [[0, 4], 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$],
646
646
  ];
647
- var CreateAssistantResponse = [3, n0, _CARr, 0, [_as], [() => AssistantData]];
648
- var CreateContentRequest = [
647
+ var CreateAssistantResponse$ = [3, n0, _CARr, 0, [_as], [() => AssistantData$]];
648
+ var CreateContentRequest$ = [
649
649
  3,
650
650
  n0,
651
651
  _CCR,
@@ -653,8 +653,8 @@ var CreateContentRequest = [
653
653
  [_kBI, _n, _ti, _oLOU, _me, _uI, _cTl, _t],
654
654
  [[0, 1], 0, 0, 0, 128 | 0, 0, [0, 4], 128 | 0],
655
655
  ];
656
- var CreateContentResponse = [3, n0, _CCRr, 0, [_co], [[() => ContentData, 0]]];
657
- var CreateKnowledgeBaseRequest = [
656
+ var CreateContentResponse$ = [3, n0, _CCRr, 0, [_co], [[() => ContentData$, 0]]];
657
+ var CreateKnowledgeBaseRequest$ = [
658
658
  3,
659
659
  n0,
660
660
  _CKBR,
@@ -664,15 +664,15 @@ var CreateKnowledgeBaseRequest = [
664
664
  [0, 4],
665
665
  0,
666
666
  0,
667
- () => SourceConfiguration,
668
- () => RenderingConfiguration,
669
- () => ServerSideEncryptionConfiguration,
667
+ () => SourceConfiguration$,
668
+ () => RenderingConfiguration$,
669
+ () => ServerSideEncryptionConfiguration$,
670
670
  0,
671
671
  128 | 0,
672
672
  ],
673
673
  ];
674
- var CreateKnowledgeBaseResponse = [3, n0, _CKBRr, 0, [_kB], [() => KnowledgeBaseData]];
675
- var CreateQuickResponseRequest = [
674
+ var CreateKnowledgeBaseResponse$ = [3, n0, _CKBRr, 0, [_kB], [() => KnowledgeBaseData$]];
675
+ var CreateQuickResponseRequest$ = [
676
676
  3,
677
677
  n0,
678
678
  _CQRR,
@@ -681,9 +681,9 @@ var CreateQuickResponseRequest = [
681
681
  [
682
682
  [0, 1],
683
683
  0,
684
- [() => QuickResponseDataProvider, 0],
684
+ [() => QuickResponseDataProvider$, 0],
685
685
  0,
686
- [() => GroupingConfiguration, 0],
686
+ [() => GroupingConfiguration$, 0],
687
687
  0,
688
688
  0,
689
689
  2,
@@ -693,15 +693,15 @@ var CreateQuickResponseRequest = [
693
693
  128 | 0,
694
694
  ],
695
695
  ];
696
- var CreateQuickResponseResponse = [
696
+ var CreateQuickResponseResponse$ = [
697
697
  3,
698
698
  n0,
699
699
  _CQRRr,
700
700
  0,
701
701
  [_qR],
702
- [[() => QuickResponseData, 0]],
702
+ [[() => QuickResponseData$, 0]],
703
703
  ];
704
- var CreateSessionRequest = [
704
+ var CreateSessionRequest$ = [
705
705
  3,
706
706
  n0,
707
707
  _CSR,
@@ -709,8 +709,8 @@ var CreateSessionRequest = [
709
709
  [_cTl, _aI, _n, _d, _t],
710
710
  [[0, 4], [0, 1], 0, 0, 128 | 0],
711
711
  ];
712
- var CreateSessionResponse = [3, n0, _CSRr, 0, [_se], [() => SessionData]];
713
- var DeleteAssistantAssociationRequest = [
712
+ var CreateSessionResponse$ = [3, n0, _CSRr, 0, [_se], [() => SessionData$]];
713
+ var DeleteAssistantAssociationRequest$ = [
714
714
  3,
715
715
  n0,
716
716
  _DAAR,
@@ -721,10 +721,10 @@ var DeleteAssistantAssociationRequest = [
721
721
  [0, 1],
722
722
  ],
723
723
  ];
724
- var DeleteAssistantAssociationResponse = [3, n0, _DAARe, 0, [], []];
725
- var DeleteAssistantRequest = [3, n0, _DAR, 0, [_aI], [[0, 1]]];
726
- var DeleteAssistantResponse = [3, n0, _DARe, 0, [], []];
727
- var DeleteContentRequest = [
724
+ var DeleteAssistantAssociationResponse$ = [3, n0, _DAARe, 0, [], []];
725
+ var DeleteAssistantRequest$ = [3, n0, _DAR, 0, [_aI], [[0, 1]]];
726
+ var DeleteAssistantResponse$ = [3, n0, _DARe, 0, [], []];
727
+ var DeleteContentRequest$ = [
728
728
  3,
729
729
  n0,
730
730
  _DCR,
@@ -735,8 +735,8 @@ var DeleteContentRequest = [
735
735
  [0, 1],
736
736
  ],
737
737
  ];
738
- var DeleteContentResponse = [3, n0, _DCRe, 0, [], []];
739
- var DeleteImportJobRequest = [
738
+ var DeleteContentResponse$ = [3, n0, _DCRe, 0, [], []];
739
+ var DeleteImportJobRequest$ = [
740
740
  3,
741
741
  n0,
742
742
  _DIJR,
@@ -747,10 +747,10 @@ var DeleteImportJobRequest = [
747
747
  [0, 1],
748
748
  ],
749
749
  ];
750
- var DeleteImportJobResponse = [3, n0, _DIJRe, 0, [], []];
751
- var DeleteKnowledgeBaseRequest = [3, n0, _DKBR, 0, [_kBI], [[0, 1]]];
752
- var DeleteKnowledgeBaseResponse = [3, n0, _DKBRe, 0, [], []];
753
- var DeleteQuickResponseRequest = [
750
+ var DeleteImportJobResponse$ = [3, n0, _DIJRe, 0, [], []];
751
+ var DeleteKnowledgeBaseRequest$ = [3, n0, _DKBR, 0, [_kBI], [[0, 1]]];
752
+ var DeleteKnowledgeBaseResponse$ = [3, n0, _DKBRe, 0, [], []];
753
+ var DeleteQuickResponseRequest$ = [
754
754
  3,
755
755
  n0,
756
756
  _DQRR,
@@ -761,16 +761,16 @@ var DeleteQuickResponseRequest = [
761
761
  [0, 1],
762
762
  ],
763
763
  ];
764
- var DeleteQuickResponseResponse = [3, n0, _DQRRe, 0, [], []];
765
- var Document = [
764
+ var DeleteQuickResponseResponse$ = [3, n0, _DQRRe, 0, [], []];
765
+ var Document$ = [
766
766
  3,
767
767
  n0,
768
768
  _D,
769
769
  0,
770
770
  [_cR, _ti, _ex],
771
- [() => ContentReference, [() => DocumentText, 0], [() => DocumentText, 0]],
771
+ [() => ContentReference$, [() => DocumentText$, 0], [() => DocumentText$, 0]],
772
772
  ];
773
- var DocumentText = [
773
+ var DocumentText$ = [
774
774
  3,
775
775
  n0,
776
776
  _DT,
@@ -778,9 +778,16 @@ var DocumentText = [
778
778
  [_te, _h],
779
779
  [[() => SensitiveString, 0], () => Highlights],
780
780
  ];
781
- var ExternalSourceConfiguration = [3, n0, _ESC, 0, [_so, _con], [0, () => Configuration]];
782
- var Filter = [3, n0, _F, 0, [_f, _o, _v], [0, 0, 0]];
783
- var GetAssistantAssociationRequest = [
781
+ var ExternalSourceConfiguration$ = [
782
+ 3,
783
+ n0,
784
+ _ESC,
785
+ 0,
786
+ [_so, _con],
787
+ [0, () => Configuration$],
788
+ ];
789
+ var Filter$ = [3, n0, _F, 0, [_f, _o, _v], [0, 0, 0]];
790
+ var GetAssistantAssociationRequest$ = [
784
791
  3,
785
792
  n0,
786
793
  _GAAR,
@@ -791,17 +798,17 @@ var GetAssistantAssociationRequest = [
791
798
  [0, 1],
792
799
  ],
793
800
  ];
794
- var GetAssistantAssociationResponse = [
801
+ var GetAssistantAssociationResponse$ = [
795
802
  3,
796
803
  n0,
797
804
  _GAARe,
798
805
  0,
799
806
  [_aAs],
800
- [() => AssistantAssociationData],
807
+ [() => AssistantAssociationData$],
801
808
  ];
802
- var GetAssistantRequest = [3, n0, _GAR, 0, [_aI], [[0, 1]]];
803
- var GetAssistantResponse = [3, n0, _GARe, 0, [_as], [() => AssistantData]];
804
- var GetContentRequest = [
809
+ var GetAssistantRequest$ = [3, n0, _GAR, 0, [_aI], [[0, 1]]];
810
+ var GetAssistantResponse$ = [3, n0, _GARe, 0, [_as], [() => AssistantData$]];
811
+ var GetContentRequest$ = [
805
812
  3,
806
813
  n0,
807
814
  _GCR,
@@ -812,8 +819,8 @@ var GetContentRequest = [
812
819
  [0, 1],
813
820
  ],
814
821
  ];
815
- var GetContentResponse = [3, n0, _GCRe, 0, [_co], [[() => ContentData, 0]]];
816
- var GetContentSummaryRequest = [
822
+ var GetContentResponse$ = [3, n0, _GCRe, 0, [_co], [[() => ContentData$, 0]]];
823
+ var GetContentSummaryRequest$ = [
817
824
  3,
818
825
  n0,
819
826
  _GCSR,
@@ -824,8 +831,8 @@ var GetContentSummaryRequest = [
824
831
  [0, 1],
825
832
  ],
826
833
  ];
827
- var GetContentSummaryResponse = [3, n0, _GCSRe, 0, [_cS], [() => ContentSummary]];
828
- var GetImportJobRequest = [
834
+ var GetContentSummaryResponse$ = [3, n0, _GCSRe, 0, [_cS], [() => ContentSummary$]];
835
+ var GetImportJobRequest$ = [
829
836
  3,
830
837
  n0,
831
838
  _GIJR,
@@ -836,10 +843,10 @@ var GetImportJobRequest = [
836
843
  [0, 1],
837
844
  ],
838
845
  ];
839
- var GetImportJobResponse = [3, n0, _GIJRe, 0, [_iJ], [[() => ImportJobData, 0]]];
840
- var GetKnowledgeBaseRequest = [3, n0, _GKBR, 0, [_kBI], [[0, 1]]];
841
- var GetKnowledgeBaseResponse = [3, n0, _GKBRe, 0, [_kB], [() => KnowledgeBaseData]];
842
- var GetQuickResponseRequest = [
846
+ var GetImportJobResponse$ = [3, n0, _GIJRe, 0, [_iJ], [[() => ImportJobData$, 0]]];
847
+ var GetKnowledgeBaseRequest$ = [3, n0, _GKBR, 0, [_kBI], [[0, 1]]];
848
+ var GetKnowledgeBaseResponse$ = [3, n0, _GKBRe, 0, [_kB], [() => KnowledgeBaseData$]];
849
+ var GetQuickResponseRequest$ = [
843
850
  3,
844
851
  n0,
845
852
  _GQRR,
@@ -850,8 +857,15 @@ var GetQuickResponseRequest = [
850
857
  [0, 1],
851
858
  ],
852
859
  ];
853
- var GetQuickResponseResponse = [3, n0, _GQRRe, 0, [_qR], [[() => QuickResponseData, 0]]];
854
- var GetRecommendationsRequest = [
860
+ var GetQuickResponseResponse$ = [
861
+ 3,
862
+ n0,
863
+ _GQRRe,
864
+ 0,
865
+ [_qR],
866
+ [[() => QuickResponseData$, 0]],
867
+ ];
868
+ var GetRecommendationsRequest$ = [
855
869
  3,
856
870
  n0,
857
871
  _GRR,
@@ -864,7 +878,7 @@ var GetRecommendationsRequest = [
864
878
  [1, { [_hQ]: _wTS }],
865
879
  ],
866
880
  ];
867
- var GetRecommendationsResponse = [
881
+ var GetRecommendationsResponse$ = [
868
882
  3,
869
883
  n0,
870
884
  _GRRe,
@@ -875,7 +889,7 @@ var GetRecommendationsResponse = [
875
889
  [() => RecommendationTriggerList, 0],
876
890
  ],
877
891
  ];
878
- var GetSessionRequest = [
892
+ var GetSessionRequest$ = [
879
893
  3,
880
894
  n0,
881
895
  _GSR,
@@ -886,8 +900,8 @@ var GetSessionRequest = [
886
900
  [0, 1],
887
901
  ],
888
902
  ];
889
- var GetSessionResponse = [3, n0, _GSRe, 0, [_se], [() => SessionData]];
890
- var GroupingConfiguration = [
903
+ var GetSessionResponse$ = [3, n0, _GSRe, 0, [_se], [() => SessionData$]];
904
+ var GroupingConfiguration$ = [
891
905
  3,
892
906
  n0,
893
907
  _GCr,
@@ -898,25 +912,25 @@ var GroupingConfiguration = [
898
912
  [() => GroupingValues, 0],
899
913
  ],
900
914
  ];
901
- var Highlight = [3, n0, _H, 0, [_bOI, _eOE], [1, 1]];
902
- var ImportJobData = [
915
+ var Highlight$ = [3, n0, _H, 0, [_bOI, _eOE], [1, 1]];
916
+ var ImportJobData$ = [
903
917
  3,
904
918
  n0,
905
919
  _IJD,
906
920
  0,
907
921
  [_iJI, _kBI, _uI, _kBA, _iJT, _s, _u, _fRR, _uE, _cTr, _lMT, _me, _eSC],
908
- [0, 0, 0, 0, 0, 0, [() => Url, 0], [() => Url, 0], 7, 7, 7, 128 | 0, () => ExternalSourceConfiguration],
922
+ [0, 0, 0, 0, 0, 0, [() => Url, 0], [() => Url, 0], 7, 7, 7, 128 | 0, () => ExternalSourceConfiguration$],
909
923
  ];
910
- var ImportJobSummary = [
924
+ var ImportJobSummary$ = [
911
925
  3,
912
926
  n0,
913
927
  _IJS,
914
928
  0,
915
929
  [_iJI, _kBI, _uI, _kBA, _iJT, _s, _cTr, _lMT, _me, _eSC],
916
- [0, 0, 0, 0, 0, 0, 7, 7, 128 | 0, () => ExternalSourceConfiguration],
930
+ [0, 0, 0, 0, 0, 0, 7, 7, 128 | 0, () => ExternalSourceConfiguration$],
917
931
  ];
918
- var KnowledgeBaseAssociationData = [3, n0, _KBAD, 0, [_kBI, _kBA], [0, 0]];
919
- var KnowledgeBaseData = [
932
+ var KnowledgeBaseAssociationData$ = [3, n0, _KBAD, 0, [_kBI, _kBA], [0, 0]];
933
+ var KnowledgeBaseData$ = [
920
934
  3,
921
935
  n0,
922
936
  _KBD,
@@ -929,14 +943,14 @@ var KnowledgeBaseData = [
929
943
  0,
930
944
  0,
931
945
  7,
932
- () => SourceConfiguration,
933
- () => RenderingConfiguration,
934
- () => ServerSideEncryptionConfiguration,
946
+ () => SourceConfiguration$,
947
+ () => RenderingConfiguration$,
948
+ () => ServerSideEncryptionConfiguration$,
935
949
  0,
936
950
  128 | 0,
937
951
  ],
938
952
  ];
939
- var KnowledgeBaseSummary = [
953
+ var KnowledgeBaseSummary$ = [
940
954
  3,
941
955
  n0,
942
956
  _KBS,
@@ -948,14 +962,14 @@ var KnowledgeBaseSummary = [
948
962
  0,
949
963
  0,
950
964
  0,
951
- () => SourceConfiguration,
952
- () => RenderingConfiguration,
953
- () => ServerSideEncryptionConfiguration,
965
+ () => SourceConfiguration$,
966
+ () => RenderingConfiguration$,
967
+ () => ServerSideEncryptionConfiguration$,
954
968
  0,
955
969
  128 | 0,
956
970
  ],
957
971
  ];
958
- var ListAssistantAssociationsRequest = [
972
+ var ListAssistantAssociationsRequest$ = [
959
973
  3,
960
974
  n0,
961
975
  _LAAR,
@@ -967,7 +981,7 @@ var ListAssistantAssociationsRequest = [
967
981
  [0, 1],
968
982
  ],
969
983
  ];
970
- var ListAssistantAssociationsResponse = [
984
+ var ListAssistantAssociationsResponse$ = [
971
985
  3,
972
986
  n0,
973
987
  _LAARi,
@@ -975,7 +989,7 @@ var ListAssistantAssociationsResponse = [
975
989
  [_aAS, _nT],
976
990
  [() => AssistantAssociationSummaryList, 0],
977
991
  ];
978
- var ListAssistantsRequest = [
992
+ var ListAssistantsRequest$ = [
979
993
  3,
980
994
  n0,
981
995
  _LAR,
@@ -986,8 +1000,8 @@ var ListAssistantsRequest = [
986
1000
  [1, { [_hQ]: _mR }],
987
1001
  ],
988
1002
  ];
989
- var ListAssistantsResponse = [3, n0, _LARi, 0, [_aS, _nT], [() => AssistantList, 0]];
990
- var ListContentsRequest = [
1003
+ var ListAssistantsResponse$ = [3, n0, _LARi, 0, [_aS, _nT], [() => AssistantList, 0]];
1004
+ var ListContentsRequest$ = [
991
1005
  3,
992
1006
  n0,
993
1007
  _LCR,
@@ -999,8 +1013,8 @@ var ListContentsRequest = [
999
1013
  [0, 1],
1000
1014
  ],
1001
1015
  ];
1002
- var ListContentsResponse = [3, n0, _LCRi, 0, [_cSo, _nT], [() => ContentSummaryList, 0]];
1003
- var ListImportJobsRequest = [
1016
+ var ListContentsResponse$ = [3, n0, _LCRi, 0, [_cSo, _nT], [() => ContentSummaryList, 0]];
1017
+ var ListImportJobsRequest$ = [
1004
1018
  3,
1005
1019
  n0,
1006
1020
  _LIJR,
@@ -1012,8 +1026,8 @@ var ListImportJobsRequest = [
1012
1026
  [0, 1],
1013
1027
  ],
1014
1028
  ];
1015
- var ListImportJobsResponse = [3, n0, _LIJRi, 0, [_iJS, _nT], [() => ImportJobList, 0]];
1016
- var ListKnowledgeBasesRequest = [
1029
+ var ListImportJobsResponse$ = [3, n0, _LIJRi, 0, [_iJS, _nT], [() => ImportJobList, 0]];
1030
+ var ListKnowledgeBasesRequest$ = [
1017
1031
  3,
1018
1032
  n0,
1019
1033
  _LKBR,
@@ -1024,7 +1038,7 @@ var ListKnowledgeBasesRequest = [
1024
1038
  [1, { [_hQ]: _mR }],
1025
1039
  ],
1026
1040
  ];
1027
- var ListKnowledgeBasesResponse = [
1041
+ var ListKnowledgeBasesResponse$ = [
1028
1042
  3,
1029
1043
  n0,
1030
1044
  _LKBRi,
@@ -1032,7 +1046,7 @@ var ListKnowledgeBasesResponse = [
1032
1046
  [_kBS, _nT],
1033
1047
  [() => KnowledgeBaseList, 0],
1034
1048
  ];
1035
- var ListQuickResponsesRequest = [
1049
+ var ListQuickResponsesRequest$ = [
1036
1050
  3,
1037
1051
  n0,
1038
1052
  _LQRR,
@@ -1044,7 +1058,7 @@ var ListQuickResponsesRequest = [
1044
1058
  [0, 1],
1045
1059
  ],
1046
1060
  ];
1047
- var ListQuickResponsesResponse = [
1061
+ var ListQuickResponsesResponse$ = [
1048
1062
  3,
1049
1063
  n0,
1050
1064
  _LQRRi,
@@ -1052,10 +1066,10 @@ var ListQuickResponsesResponse = [
1052
1066
  [_qRS, _nT],
1053
1067
  [[() => QuickResponseSummaryList, 0], 0],
1054
1068
  ];
1055
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
1056
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1057
- var NotifyRecommendationsReceivedError = [3, n0, _NRRE, 0, [_rIe, _m], [0, 0]];
1058
- var NotifyRecommendationsReceivedRequest = [
1069
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
1070
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1071
+ var NotifyRecommendationsReceivedError$ = [3, n0, _NRRE, 0, [_rIe, _m], [0, 0]];
1072
+ var NotifyRecommendationsReceivedRequest$ = [
1059
1073
  3,
1060
1074
  n0,
1061
1075
  _NRRR,
@@ -1063,7 +1077,7 @@ var NotifyRecommendationsReceivedRequest = [
1063
1077
  [_aI, _sI, _rIec],
1064
1078
  [[0, 1], [0, 1], 64 | 0],
1065
1079
  ];
1066
- var NotifyRecommendationsReceivedResponse = [
1080
+ var NotifyRecommendationsReceivedResponse$ = [
1067
1081
  3,
1068
1082
  n0,
1069
1083
  _NRRRo,
@@ -1071,9 +1085,9 @@ var NotifyRecommendationsReceivedResponse = [
1071
1085
  [_rIec, _er],
1072
1086
  [64 | 0, () => NotifyRecommendationsReceivedErrorList],
1073
1087
  ];
1074
- var PreconditionFailedException = [-3, n0, _PFE, { [_e]: _c, [_hE]: 412 }, [_m], [0]];
1075
- schema.TypeRegistry.for(n0).registerError(PreconditionFailedException, PreconditionFailedException$1);
1076
- var QueryAssistantRequest = [
1088
+ var PreconditionFailedException$ = [-3, n0, _PFE, { [_e]: _c, [_hE]: 412 }, [_m], [0]];
1089
+ schema.TypeRegistry.for(n0).registerError(PreconditionFailedException$, PreconditionFailedException);
1090
+ var QueryAssistantRequest$ = [
1077
1091
  3,
1078
1092
  n0,
1079
1093
  _QAR,
@@ -1081,7 +1095,7 @@ var QueryAssistantRequest = [
1081
1095
  [_aI, _qT, _nT, _mR],
1082
1096
  [[0, 1], [() => QueryText, 0], 0, 1],
1083
1097
  ];
1084
- var QueryAssistantResponse = [
1098
+ var QueryAssistantResponse$ = [
1085
1099
  3,
1086
1100
  n0,
1087
1101
  _QARu,
@@ -1089,19 +1103,19 @@ var QueryAssistantResponse = [
1089
1103
  [_re, _nT],
1090
1104
  [[() => QueryResultsList, 0], 0],
1091
1105
  ];
1092
- var QueryRecommendationTriggerData = [3, n0, _QRTD, 0, [_te], [[() => QueryText, 0]]];
1093
- var QuickResponseContents = [
1106
+ var QueryRecommendationTriggerData$ = [3, n0, _QRTD, 0, [_te], [[() => QueryText, 0]]];
1107
+ var QuickResponseContents$ = [
1094
1108
  3,
1095
1109
  n0,
1096
1110
  _QRCu,
1097
1111
  0,
1098
1112
  [_pT, _ma],
1099
1113
  [
1100
- [() => QuickResponseContentProvider, 0],
1101
- [() => QuickResponseContentProvider, 0],
1114
+ [() => QuickResponseContentProvider$, 0],
1115
+ [() => QuickResponseContentProvider$, 0],
1102
1116
  ],
1103
1117
  ];
1104
- var QuickResponseData = [
1118
+ var QuickResponseData$ = [
1105
1119
  3,
1106
1120
  n0,
1107
1121
  _QRD,
@@ -1117,9 +1131,9 @@ var QuickResponseData = [
1117
1131
  0,
1118
1132
  7,
1119
1133
  7,
1120
- [() => QuickResponseContents, 0],
1134
+ [() => QuickResponseContents$, 0],
1121
1135
  0,
1122
- [() => GroupingConfiguration, 0],
1136
+ [() => GroupingConfiguration$, 0],
1123
1137
  0,
1124
1138
  0,
1125
1139
  2,
@@ -1128,9 +1142,9 @@ var QuickResponseData = [
1128
1142
  128 | 0,
1129
1143
  ],
1130
1144
  ];
1131
- var QuickResponseFilterField = [3, n0, _QRFF, 0, [_n, _va, _o, _iNE], [0, 64 | 0, 0, 2]];
1132
- var QuickResponseOrderField = [3, n0, _QROF, 0, [_n, _or], [0, 0]];
1133
- var QuickResponseQueryField = [
1145
+ var QuickResponseFilterField$ = [3, n0, _QRFF, 0, [_n, _va, _o, _iNE], [0, 64 | 0, 0, 2]];
1146
+ var QuickResponseOrderField$ = [3, n0, _QROF, 0, [_n, _or], [0, 0]];
1147
+ var QuickResponseQueryField$ = [
1134
1148
  3,
1135
1149
  n0,
1136
1150
  _QRQF,
@@ -1138,15 +1152,15 @@ var QuickResponseQueryField = [
1138
1152
  [_n, _va, _o, _aF, _p],
1139
1153
  [0, 64 | 0, 0, 2, 0],
1140
1154
  ];
1141
- var QuickResponseSearchExpression = [
1155
+ var QuickResponseSearchExpression$ = [
1142
1156
  3,
1143
1157
  n0,
1144
1158
  _QRSE,
1145
1159
  0,
1146
1160
  [_q, _fi, _oOF],
1147
- [() => QuickResponseQueryFieldList, () => QuickResponseFilterFieldList, () => QuickResponseOrderField],
1161
+ [() => QuickResponseQueryFieldList, () => QuickResponseFilterFieldList, () => QuickResponseOrderField$],
1148
1162
  ];
1149
- var QuickResponseSearchResultData = [
1163
+ var QuickResponseSearchResultData$ = [
1150
1164
  3,
1151
1165
  n0,
1152
1166
  _QRSRD,
@@ -1160,12 +1174,12 @@ var QuickResponseSearchResultData = [
1160
1174
  0,
1161
1175
  0,
1162
1176
  0,
1163
- [() => QuickResponseContents, 0],
1177
+ [() => QuickResponseContents$, 0],
1164
1178
  7,
1165
1179
  7,
1166
1180
  2,
1167
1181
  0,
1168
- [() => GroupingConfiguration, 0],
1182
+ [() => GroupingConfiguration$, 0],
1169
1183
  0,
1170
1184
  0,
1171
1185
  [() => Channels, 0],
@@ -1175,7 +1189,7 @@ var QuickResponseSearchResultData = [
1175
1189
  128 | 0,
1176
1190
  ],
1177
1191
  ];
1178
- var QuickResponseSummary = [
1192
+ var QuickResponseSummary$ = [
1179
1193
  3,
1180
1194
  n0,
1181
1195
  _QRS,
@@ -1183,49 +1197,62 @@ var QuickResponseSummary = [
1183
1197
  [_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cTr, _lMT, _d, _lMB, _iA, _ch, _t],
1184
1198
  [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 2, [() => Channels, 0], 128 | 0],
1185
1199
  ];
1186
- var RecommendationData = [
1200
+ var RecommendationData$ = [
1187
1201
  3,
1188
1202
  n0,
1189
1203
  _RD,
1190
1204
  0,
1191
1205
  [_rIe, _do, _rS, _rL, _ty],
1192
- [0, [() => Document, 0], 1, 0, 0],
1206
+ [0, [() => Document$, 0], 1, 0, 0],
1193
1207
  ];
1194
- var RecommendationTrigger = [
1208
+ var RecommendationTrigger$ = [
1195
1209
  3,
1196
1210
  n0,
1197
1211
  _RT,
1198
1212
  0,
1199
1213
  [_i, _ty, _so, _da, _rIec],
1200
- [0, 0, 0, [() => RecommendationTriggerData, 0], 64 | 0],
1214
+ [0, 0, 0, [() => RecommendationTriggerData$, 0], 64 | 0],
1201
1215
  ];
1202
- var RemoveKnowledgeBaseTemplateUriRequest = [3, n0, _RKBTUR, 0, [_kBI], [[0, 1]]];
1203
- var RemoveKnowledgeBaseTemplateUriResponse = [3, n0, _RKBTURe, 0, [], []];
1204
- var RenderingConfiguration = [3, n0, _RC, 0, [_tU], [0]];
1205
- var RequestTimeoutException = [-3, n0, _RTE, { [_e]: _c, [_hE]: 408 }, [_m], [0]];
1206
- schema.TypeRegistry.for(n0).registerError(RequestTimeoutException, RequestTimeoutException$1);
1207
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _rN], [0, 0]];
1208
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1209
- var ResultData = [3, n0, _RDe, 0, [_rIes, _do, _rS], [0, [() => Document, 0], 1]];
1210
- var SearchContentRequest = [
1216
+ var RemoveKnowledgeBaseTemplateUriRequest$ = [3, n0, _RKBTUR, 0, [_kBI], [[0, 1]]];
1217
+ var RemoveKnowledgeBaseTemplateUriResponse$ = [3, n0, _RKBTURe, 0, [], []];
1218
+ var RenderingConfiguration$ = [3, n0, _RC, 0, [_tU], [0]];
1219
+ var RequestTimeoutException$ = [-3, n0, _RTE, { [_e]: _c, [_hE]: 408 }, [_m], [0]];
1220
+ schema.TypeRegistry.for(n0).registerError(RequestTimeoutException$, RequestTimeoutException);
1221
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _rN], [0, 0]];
1222
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1223
+ var ResultData$ = [3, n0, _RDe, 0, [_rIes, _do, _rS], [0, [() => Document$, 0], 1]];
1224
+ var SearchContentRequest$ = [
1211
1225
  3,
1212
1226
  n0,
1213
1227
  _SCR,
1214
1228
  0,
1215
1229
  [_nT, _mR, _kBI, _sE],
1216
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, 1], () => SearchExpression],
1230
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, 1], () => SearchExpression$],
1217
1231
  ];
1218
- var SearchContentResponse = [3, n0, _SCRe, 0, [_cSo, _nT], [() => ContentSummaryList, 0]];
1219
- var SearchExpression = [3, n0, _SE, 0, [_fi], [() => FilterList]];
1220
- var SearchQuickResponsesRequest = [
1232
+ var SearchContentResponse$ = [
1233
+ 3,
1234
+ n0,
1235
+ _SCRe,
1236
+ 0,
1237
+ [_cSo, _nT],
1238
+ [() => ContentSummaryList, 0],
1239
+ ];
1240
+ var SearchExpression$ = [3, n0, _SE, 0, [_fi], [() => FilterList]];
1241
+ var SearchQuickResponsesRequest$ = [
1221
1242
  3,
1222
1243
  n0,
1223
1244
  _SQRR,
1224
1245
  0,
1225
1246
  [_kBI, _sE, _nT, _mR, _at],
1226
- [[0, 1], () => QuickResponseSearchExpression, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [() => ContactAttributes, 0]],
1247
+ [
1248
+ [0, 1],
1249
+ () => QuickResponseSearchExpression$,
1250
+ [0, { [_hQ]: _nT }],
1251
+ [1, { [_hQ]: _mR }],
1252
+ [() => ContactAttributes, 0],
1253
+ ],
1227
1254
  ];
1228
- var SearchQuickResponsesResponse = [
1255
+ var SearchQuickResponsesResponse$ = [
1229
1256
  3,
1230
1257
  n0,
1231
1258
  _SQRRe,
@@ -1233,30 +1260,30 @@ var SearchQuickResponsesResponse = [
1233
1260
  [_re, _nT],
1234
1261
  [[() => QuickResponseSearchResultsList, 0], 0],
1235
1262
  ];
1236
- var SearchSessionsRequest = [
1263
+ var SearchSessionsRequest$ = [
1237
1264
  3,
1238
1265
  n0,
1239
1266
  _SSR,
1240
1267
  0,
1241
1268
  [_nT, _mR, _aI, _sE],
1242
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, 1], () => SearchExpression],
1269
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, 1], () => SearchExpression$],
1243
1270
  ];
1244
- var SearchSessionsResponse = [3, n0, _SSRe, 0, [_sS, _nT], [() => SessionSummaries, 0]];
1245
- var ServerSideEncryptionConfiguration = [3, n0, _SSEC, 0, [_kKI], [0]];
1246
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1247
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1248
- var SessionData = [
1271
+ var SearchSessionsResponse$ = [3, n0, _SSRe, 0, [_sS, _nT], [() => SessionSummaries, 0]];
1272
+ var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC, 0, [_kKI], [0]];
1273
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1274
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1275
+ var SessionData$ = [
1249
1276
  3,
1250
1277
  n0,
1251
1278
  _SD,
1252
1279
  0,
1253
1280
  [_sA, _sI, _n, _d, _t, _iC],
1254
- [0, 0, 0, 0, 128 | 0, () => SessionIntegrationConfiguration],
1281
+ [0, 0, 0, 0, 128 | 0, () => SessionIntegrationConfiguration$],
1255
1282
  ];
1256
- var SessionIntegrationConfiguration = [3, n0, _SIC, 0, [_tIA], [0]];
1257
- var SessionSummary = [3, n0, _SSe, 0, [_sI, _sA, _aI, _aA], [0, 0, 0, 0]];
1258
- var StartContentUploadRequest = [3, n0, _SCUR, 0, [_kBI, _cT, _pUTTL], [[0, 1], 0, 1]];
1259
- var StartContentUploadResponse = [
1283
+ var SessionIntegrationConfiguration$ = [3, n0, _SIC, 0, [_tIA], [0]];
1284
+ var SessionSummary$ = [3, n0, _SSe, 0, [_sI, _sA, _aI, _aA], [0, 0, 0, 0]];
1285
+ var StartContentUploadRequest$ = [3, n0, _SCUR, 0, [_kBI, _cT, _pUTTL], [[0, 1], 0, 1]];
1286
+ var StartContentUploadResponse$ = [
1260
1287
  3,
1261
1288
  n0,
1262
1289
  _SCURt,
@@ -1264,20 +1291,20 @@ var StartContentUploadResponse = [
1264
1291
  [_uI, _u, _uE, _hTI],
1265
1292
  [0, [() => Url, 0], 7, 128 | 0],
1266
1293
  ];
1267
- var StartImportJobRequest = [
1294
+ var StartImportJobRequest$ = [
1268
1295
  3,
1269
1296
  n0,
1270
1297
  _SIJR,
1271
1298
  0,
1272
1299
  [_kBI, _iJT, _uI, _cTl, _me, _eSC],
1273
- [[0, 1], 0, 0, [0, 4], 128 | 0, () => ExternalSourceConfiguration],
1300
+ [[0, 1], 0, 0, [0, 4], 128 | 0, () => ExternalSourceConfiguration$],
1274
1301
  ];
1275
- var StartImportJobResponse = [3, n0, _SIJRt, 0, [_iJ], [[() => ImportJobData, 0]]];
1276
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
1277
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1278
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
1279
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
1280
- var UntagResourceRequest = [
1302
+ var StartImportJobResponse$ = [3, n0, _SIJRt, 0, [_iJ], [[() => ImportJobData$, 0]]];
1303
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
1304
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1305
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
1306
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
1307
+ var UntagResourceRequest$ = [
1281
1308
  3,
1282
1309
  n0,
1283
1310
  _URR,
@@ -1288,8 +1315,8 @@ var UntagResourceRequest = [
1288
1315
  [64 | 0, { [_hQ]: _tK }],
1289
1316
  ],
1290
1317
  ];
1291
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1292
- var UpdateContentRequest = [
1318
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1319
+ var UpdateContentRequest$ = [
1293
1320
  3,
1294
1321
  n0,
1295
1322
  _UCR,
@@ -1297,17 +1324,24 @@ var UpdateContentRequest = [
1297
1324
  [_kBI, _cI, _rI, _ti, _oLOU, _rOLOU, _me, _uI],
1298
1325
  [[0, 1], [0, 1], 0, 0, 0, 2, 128 | 0, 0],
1299
1326
  ];
1300
- var UpdateContentResponse = [3, n0, _UCRp, 0, [_co], [[() => ContentData, 0]]];
1301
- var UpdateKnowledgeBaseTemplateUriRequest = [3, n0, _UKBTUR, 0, [_kBI, _tU], [[0, 1], 0]];
1302
- var UpdateKnowledgeBaseTemplateUriResponse = [
1327
+ var UpdateContentResponse$ = [3, n0, _UCRp, 0, [_co], [[() => ContentData$, 0]]];
1328
+ var UpdateKnowledgeBaseTemplateUriRequest$ = [
1329
+ 3,
1330
+ n0,
1331
+ _UKBTUR,
1332
+ 0,
1333
+ [_kBI, _tU],
1334
+ [[0, 1], 0],
1335
+ ];
1336
+ var UpdateKnowledgeBaseTemplateUriResponse$ = [
1303
1337
  3,
1304
1338
  n0,
1305
1339
  _UKBTURp,
1306
1340
  0,
1307
1341
  [_kB],
1308
- [() => KnowledgeBaseData],
1342
+ [() => KnowledgeBaseData$],
1309
1343
  ];
1310
- var UpdateQuickResponseRequest = [
1344
+ var UpdateQuickResponseRequest$ = [
1311
1345
  3,
1312
1346
  n0,
1313
1347
  _UQRR,
@@ -1317,9 +1351,9 @@ var UpdateQuickResponseRequest = [
1317
1351
  [0, 1],
1318
1352
  [0, 1],
1319
1353
  0,
1320
- [() => QuickResponseDataProvider, 0],
1354
+ [() => QuickResponseDataProvider$, 0],
1321
1355
  0,
1322
- [() => GroupingConfiguration, 0],
1356
+ [() => GroupingConfiguration$, 0],
1323
1357
  2,
1324
1358
  0,
1325
1359
  2,
@@ -1330,61 +1364,55 @@ var UpdateQuickResponseRequest = [
1330
1364
  0,
1331
1365
  ],
1332
1366
  ];
1333
- var UpdateQuickResponseResponse = [
1367
+ var UpdateQuickResponseResponse$ = [
1334
1368
  3,
1335
1369
  n0,
1336
1370
  _UQRRp,
1337
1371
  0,
1338
1372
  [_qR],
1339
- [[() => QuickResponseData, 0]],
1340
- ];
1341
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1342
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1343
- var WisdomServiceException = [-3, _sm, "WisdomServiceException", 0, [], []];
1344
- schema.TypeRegistry.for(_sm).registerError(WisdomServiceException, WisdomServiceException$1);
1345
- var AssistantAssociationSummaryList = [1, n0, _AASL, 0, () => AssistantAssociationSummary];
1346
- var AssistantList = [1, n0, _AL, 0, () => AssistantSummary];
1373
+ [[() => QuickResponseData$, 0]],
1374
+ ];
1375
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1376
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1377
+ var WisdomServiceException$ = [-3, _sm, "WisdomServiceException", 0, [], []];
1378
+ schema.TypeRegistry.for(_sm).registerError(WisdomServiceException$, WisdomServiceException);
1379
+ var AssistantAssociationSummaryList = [1, n0, _AASL, 0, () => AssistantAssociationSummary$];
1380
+ var AssistantList = [1, n0, _AL, 0, () => AssistantSummary$];
1347
1381
  var Channels = [1, n0, _Ch, 0, [() => Channel, 0]];
1348
1382
  var ContactAttributeKeys = [1, n0, _CAK, 8, 0];
1349
- var ContentSummaryList = [1, n0, _CSL, 0, () => ContentSummary];
1350
- var FilterList = [1, n0, _FL, 0, () => Filter];
1383
+ var ContentSummaryList = [1, n0, _CSL, 0, () => ContentSummary$];
1384
+ var FilterList = [1, n0, _FL, 0, () => Filter$];
1351
1385
  var GroupingValues = [1, n0, _GVr, 0, [() => GroupingValue, 0]];
1352
- var Highlights = [1, n0, _Hi, 0, () => Highlight];
1353
- var ImportJobList = [1, n0, _IJL, 0, () => ImportJobSummary];
1354
- var KnowledgeBaseList = [1, n0, _KBL, 0, () => KnowledgeBaseSummary];
1386
+ var Highlights = [1, n0, _Hi, 0, () => Highlight$];
1387
+ var ImportJobList = [1, n0, _IJL, 0, () => ImportJobSummary$];
1388
+ var KnowledgeBaseList = [1, n0, _KBL, 0, () => KnowledgeBaseSummary$];
1355
1389
  var NotifyRecommendationsReceivedErrorList = [
1356
1390
  1,
1357
1391
  n0,
1358
1392
  _NRREL,
1359
1393
  0,
1360
- () => NotifyRecommendationsReceivedError,
1361
- ];
1362
- var QueryResultsList = [1, n0, _QRL, 0, [() => ResultData, 0]];
1363
- var QuickResponseFilterFieldList = [1, n0, _QRFFL, 0, () => QuickResponseFilterField];
1364
- var QuickResponseQueryFieldList = [1, n0, _QRQFL, 0, () => QuickResponseQueryField];
1365
- var QuickResponseSearchResultsList = [
1366
- 1,
1367
- n0,
1368
- _QRSRL,
1369
- 0,
1370
- [() => QuickResponseSearchResultData, 0],
1394
+ () => NotifyRecommendationsReceivedError$,
1371
1395
  ];
1372
- var QuickResponseSummaryList = [1, n0, _QRSL, 0, [() => QuickResponseSummary, 0]];
1373
- var RecommendationList = [1, n0, _RL, 0, [() => RecommendationData, 0]];
1374
- var RecommendationTriggerList = [1, n0, _RTL, 0, [() => RecommendationTrigger, 0]];
1375
- var SessionSummaries = [1, n0, _SSes, 0, () => SessionSummary];
1396
+ var QueryResultsList = [1, n0, _QRL, 0, [() => ResultData$, 0]];
1397
+ var QuickResponseFilterFieldList = [1, n0, _QRFFL, 0, () => QuickResponseFilterField$];
1398
+ var QuickResponseQueryFieldList = [1, n0, _QRQFL, 0, () => QuickResponseQueryField$];
1399
+ var QuickResponseSearchResultsList = [1, n0, _QRSRL, 0, [() => QuickResponseSearchResultData$, 0]];
1400
+ var QuickResponseSummaryList = [1, n0, _QRSL, 0, [() => QuickResponseSummary$, 0]];
1401
+ var RecommendationList = [1, n0, _RL, 0, [() => RecommendationData$, 0]];
1402
+ var RecommendationTriggerList = [1, n0, _RTL, 0, [() => RecommendationTrigger$, 0]];
1403
+ var SessionSummaries = [1, n0, _SSes, 0, () => SessionSummary$];
1376
1404
  var ContactAttributes = [2, n0, _CA, 8, 0, 0];
1377
- var AssistantAssociationInputData = [3, n0, _AAID, 0, [_kBI], [0]];
1378
- var AssistantAssociationOutputData = [
1405
+ var AssistantAssociationInputData$ = [3, n0, _AAID, 0, [_kBI], [0]];
1406
+ var AssistantAssociationOutputData$ = [
1379
1407
  3,
1380
1408
  n0,
1381
1409
  _AAOD,
1382
1410
  0,
1383
1411
  [_kBAn],
1384
- [() => KnowledgeBaseAssociationData],
1412
+ [() => KnowledgeBaseAssociationData$],
1385
1413
  ];
1386
- var Configuration = [3, n0, _Co, 0, [_cC], [() => ConnectConfiguration]];
1387
- var QuickResponseContentProvider = [
1414
+ var Configuration$ = [3, n0, _Co, 0, [_cC], [() => ConnectConfiguration$]];
1415
+ var QuickResponseContentProvider$ = [
1388
1416
  3,
1389
1417
  n0,
1390
1418
  _QRCP,
@@ -1392,7 +1420,7 @@ var QuickResponseContentProvider = [
1392
1420
  [_co],
1393
1421
  [[() => QuickResponseContent, 0]],
1394
1422
  ];
1395
- var QuickResponseDataProvider = [
1423
+ var QuickResponseDataProvider$ = [
1396
1424
  3,
1397
1425
  n0,
1398
1426
  _QRDP,
@@ -1400,342 +1428,342 @@ var QuickResponseDataProvider = [
1400
1428
  [_co],
1401
1429
  [[() => QuickResponseContent, 0]],
1402
1430
  ];
1403
- var RecommendationTriggerData = [
1431
+ var RecommendationTriggerData$ = [
1404
1432
  3,
1405
1433
  n0,
1406
1434
  _RTD,
1407
1435
  0,
1408
1436
  [_qu],
1409
- [[() => QueryRecommendationTriggerData, 0]],
1437
+ [[() => QueryRecommendationTriggerData$, 0]],
1410
1438
  ];
1411
- var SourceConfiguration = [3, n0, _SC, 0, [_aIp], [() => AppIntegrationsConfiguration]];
1412
- var CreateAssistant = [
1439
+ var SourceConfiguration$ = [3, n0, _SC, 0, [_aIp], [() => AppIntegrationsConfiguration$]];
1440
+ var CreateAssistant$ = [
1413
1441
  9,
1414
1442
  n0,
1415
1443
  _CAr,
1416
1444
  { [_ht]: ["POST", "/assistants", 200] },
1417
- () => CreateAssistantRequest,
1418
- () => CreateAssistantResponse,
1445
+ () => CreateAssistantRequest$,
1446
+ () => CreateAssistantResponse$,
1419
1447
  ];
1420
- var CreateAssistantAssociation = [
1448
+ var CreateAssistantAssociation$ = [
1421
1449
  9,
1422
1450
  n0,
1423
1451
  _CAA,
1424
1452
  { [_ht]: ["POST", "/assistants/{assistantId}/associations", 200] },
1425
- () => CreateAssistantAssociationRequest,
1426
- () => CreateAssistantAssociationResponse,
1453
+ () => CreateAssistantAssociationRequest$,
1454
+ () => CreateAssistantAssociationResponse$,
1427
1455
  ];
1428
- var CreateContent = [
1456
+ var CreateContent$ = [
1429
1457
  9,
1430
1458
  n0,
1431
1459
  _CCr,
1432
1460
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents", 200] },
1433
- () => CreateContentRequest,
1434
- () => CreateContentResponse,
1461
+ () => CreateContentRequest$,
1462
+ () => CreateContentResponse$,
1435
1463
  ];
1436
- var CreateKnowledgeBase = [
1464
+ var CreateKnowledgeBase$ = [
1437
1465
  9,
1438
1466
  n0,
1439
1467
  _CKB,
1440
1468
  { [_ht]: ["POST", "/knowledgeBases", 200] },
1441
- () => CreateKnowledgeBaseRequest,
1442
- () => CreateKnowledgeBaseResponse,
1469
+ () => CreateKnowledgeBaseRequest$,
1470
+ () => CreateKnowledgeBaseResponse$,
1443
1471
  ];
1444
- var CreateQuickResponse = [
1472
+ var CreateQuickResponse$ = [
1445
1473
  9,
1446
1474
  n0,
1447
1475
  _CQR,
1448
1476
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200] },
1449
- () => CreateQuickResponseRequest,
1450
- () => CreateQuickResponseResponse,
1477
+ () => CreateQuickResponseRequest$,
1478
+ () => CreateQuickResponseResponse$,
1451
1479
  ];
1452
- var CreateSession = [
1480
+ var CreateSession$ = [
1453
1481
  9,
1454
1482
  n0,
1455
1483
  _CSr,
1456
1484
  { [_ht]: ["POST", "/assistants/{assistantId}/sessions", 200] },
1457
- () => CreateSessionRequest,
1458
- () => CreateSessionResponse,
1485
+ () => CreateSessionRequest$,
1486
+ () => CreateSessionResponse$,
1459
1487
  ];
1460
- var DeleteAssistant = [
1488
+ var DeleteAssistant$ = [
1461
1489
  9,
1462
1490
  n0,
1463
1491
  _DA,
1464
1492
  { [_ht]: ["DELETE", "/assistants/{assistantId}", 204] },
1465
- () => DeleteAssistantRequest,
1466
- () => DeleteAssistantResponse,
1493
+ () => DeleteAssistantRequest$,
1494
+ () => DeleteAssistantResponse$,
1467
1495
  ];
1468
- var DeleteAssistantAssociation = [
1496
+ var DeleteAssistantAssociation$ = [
1469
1497
  9,
1470
1498
  n0,
1471
1499
  _DAA,
1472
1500
  { [_ht]: ["DELETE", "/assistants/{assistantId}/associations/{assistantAssociationId}", 204] },
1473
- () => DeleteAssistantAssociationRequest,
1474
- () => DeleteAssistantAssociationResponse,
1501
+ () => DeleteAssistantAssociationRequest$,
1502
+ () => DeleteAssistantAssociationResponse$,
1475
1503
  ];
1476
- var DeleteContent = [
1504
+ var DeleteContent$ = [
1477
1505
  9,
1478
1506
  n0,
1479
1507
  _DC,
1480
1508
  { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 204] },
1481
- () => DeleteContentRequest,
1482
- () => DeleteContentResponse,
1509
+ () => DeleteContentRequest$,
1510
+ () => DeleteContentResponse$,
1483
1511
  ];
1484
- var DeleteImportJob = [
1512
+ var DeleteImportJob$ = [
1485
1513
  9,
1486
1514
  n0,
1487
1515
  _DIJ,
1488
1516
  { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 204] },
1489
- () => DeleteImportJobRequest,
1490
- () => DeleteImportJobResponse,
1517
+ () => DeleteImportJobRequest$,
1518
+ () => DeleteImportJobResponse$,
1491
1519
  ];
1492
- var DeleteKnowledgeBase = [
1520
+ var DeleteKnowledgeBase$ = [
1493
1521
  9,
1494
1522
  n0,
1495
1523
  _DKB,
1496
1524
  { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}", 204] },
1497
- () => DeleteKnowledgeBaseRequest,
1498
- () => DeleteKnowledgeBaseResponse,
1525
+ () => DeleteKnowledgeBaseRequest$,
1526
+ () => DeleteKnowledgeBaseResponse$,
1499
1527
  ];
1500
- var DeleteQuickResponse = [
1528
+ var DeleteQuickResponse$ = [
1501
1529
  9,
1502
1530
  n0,
1503
1531
  _DQR,
1504
1532
  { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 204] },
1505
- () => DeleteQuickResponseRequest,
1506
- () => DeleteQuickResponseResponse,
1533
+ () => DeleteQuickResponseRequest$,
1534
+ () => DeleteQuickResponseResponse$,
1507
1535
  ];
1508
- var GetAssistant = [
1536
+ var GetAssistant$ = [
1509
1537
  9,
1510
1538
  n0,
1511
1539
  _GA,
1512
1540
  { [_ht]: ["GET", "/assistants/{assistantId}", 200] },
1513
- () => GetAssistantRequest,
1514
- () => GetAssistantResponse,
1541
+ () => GetAssistantRequest$,
1542
+ () => GetAssistantResponse$,
1515
1543
  ];
1516
- var GetAssistantAssociation = [
1544
+ var GetAssistantAssociation$ = [
1517
1545
  9,
1518
1546
  n0,
1519
1547
  _GAA,
1520
1548
  { [_ht]: ["GET", "/assistants/{assistantId}/associations/{assistantAssociationId}", 200] },
1521
- () => GetAssistantAssociationRequest,
1522
- () => GetAssistantAssociationResponse,
1549
+ () => GetAssistantAssociationRequest$,
1550
+ () => GetAssistantAssociationResponse$,
1523
1551
  ];
1524
- var GetContent = [
1552
+ var GetContent$ = [
1525
1553
  9,
1526
1554
  n0,
1527
1555
  _GCe,
1528
1556
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200] },
1529
- () => GetContentRequest,
1530
- () => GetContentResponse,
1557
+ () => GetContentRequest$,
1558
+ () => GetContentResponse$,
1531
1559
  ];
1532
- var GetContentSummary = [
1560
+ var GetContentSummary$ = [
1533
1561
  9,
1534
1562
  n0,
1535
1563
  _GCS,
1536
1564
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}/summary", 200] },
1537
- () => GetContentSummaryRequest,
1538
- () => GetContentSummaryResponse,
1565
+ () => GetContentSummaryRequest$,
1566
+ () => GetContentSummaryResponse$,
1539
1567
  ];
1540
- var GetImportJob = [
1568
+ var GetImportJob$ = [
1541
1569
  9,
1542
1570
  n0,
1543
1571
  _GIJ,
1544
1572
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 200] },
1545
- () => GetImportJobRequest,
1546
- () => GetImportJobResponse,
1573
+ () => GetImportJobRequest$,
1574
+ () => GetImportJobResponse$,
1547
1575
  ];
1548
- var GetKnowledgeBase = [
1576
+ var GetKnowledgeBase$ = [
1549
1577
  9,
1550
1578
  n0,
1551
1579
  _GKB,
1552
1580
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}", 200] },
1553
- () => GetKnowledgeBaseRequest,
1554
- () => GetKnowledgeBaseResponse,
1581
+ () => GetKnowledgeBaseRequest$,
1582
+ () => GetKnowledgeBaseResponse$,
1555
1583
  ];
1556
- var GetQuickResponse = [
1584
+ var GetQuickResponse$ = [
1557
1585
  9,
1558
1586
  n0,
1559
1587
  _GQR,
1560
1588
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200] },
1561
- () => GetQuickResponseRequest,
1562
- () => GetQuickResponseResponse,
1589
+ () => GetQuickResponseRequest$,
1590
+ () => GetQuickResponseResponse$,
1563
1591
  ];
1564
- var GetRecommendations = [
1592
+ var GetRecommendations$ = [
1565
1593
  9,
1566
1594
  n0,
1567
1595
  _GR,
1568
1596
  { [_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}/recommendations", 200] },
1569
- () => GetRecommendationsRequest,
1570
- () => GetRecommendationsResponse,
1597
+ () => GetRecommendationsRequest$,
1598
+ () => GetRecommendationsResponse$,
1571
1599
  ];
1572
- var GetSession = [
1600
+ var GetSession$ = [
1573
1601
  9,
1574
1602
  n0,
1575
1603
  _GS,
1576
1604
  { [_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}", 200] },
1577
- () => GetSessionRequest,
1578
- () => GetSessionResponse,
1605
+ () => GetSessionRequest$,
1606
+ () => GetSessionResponse$,
1579
1607
  ];
1580
- var ListAssistantAssociations = [
1608
+ var ListAssistantAssociations$ = [
1581
1609
  9,
1582
1610
  n0,
1583
1611
  _LAA,
1584
1612
  { [_ht]: ["GET", "/assistants/{assistantId}/associations", 200] },
1585
- () => ListAssistantAssociationsRequest,
1586
- () => ListAssistantAssociationsResponse,
1613
+ () => ListAssistantAssociationsRequest$,
1614
+ () => ListAssistantAssociationsResponse$,
1587
1615
  ];
1588
- var ListAssistants = [
1616
+ var ListAssistants$ = [
1589
1617
  9,
1590
1618
  n0,
1591
1619
  _LA,
1592
1620
  { [_ht]: ["GET", "/assistants", 200] },
1593
- () => ListAssistantsRequest,
1594
- () => ListAssistantsResponse,
1621
+ () => ListAssistantsRequest$,
1622
+ () => ListAssistantsResponse$,
1595
1623
  ];
1596
- var ListContents = [
1624
+ var ListContents$ = [
1597
1625
  9,
1598
1626
  n0,
1599
1627
  _LC,
1600
1628
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents", 200] },
1601
- () => ListContentsRequest,
1602
- () => ListContentsResponse,
1629
+ () => ListContentsRequest$,
1630
+ () => ListContentsResponse$,
1603
1631
  ];
1604
- var ListImportJobs = [
1632
+ var ListImportJobs$ = [
1605
1633
  9,
1606
1634
  n0,
1607
1635
  _LIJ,
1608
1636
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200] },
1609
- () => ListImportJobsRequest,
1610
- () => ListImportJobsResponse,
1637
+ () => ListImportJobsRequest$,
1638
+ () => ListImportJobsResponse$,
1611
1639
  ];
1612
- var ListKnowledgeBases = [
1640
+ var ListKnowledgeBases$ = [
1613
1641
  9,
1614
1642
  n0,
1615
1643
  _LKB,
1616
1644
  { [_ht]: ["GET", "/knowledgeBases", 200] },
1617
- () => ListKnowledgeBasesRequest,
1618
- () => ListKnowledgeBasesResponse,
1645
+ () => ListKnowledgeBasesRequest$,
1646
+ () => ListKnowledgeBasesResponse$,
1619
1647
  ];
1620
- var ListQuickResponses = [
1648
+ var ListQuickResponses$ = [
1621
1649
  9,
1622
1650
  n0,
1623
1651
  _LQR,
1624
1652
  { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200] },
1625
- () => ListQuickResponsesRequest,
1626
- () => ListQuickResponsesResponse,
1653
+ () => ListQuickResponsesRequest$,
1654
+ () => ListQuickResponsesResponse$,
1627
1655
  ];
1628
- var ListTagsForResource = [
1656
+ var ListTagsForResource$ = [
1629
1657
  9,
1630
1658
  n0,
1631
1659
  _LTFR,
1632
1660
  { [_ht]: ["GET", "/tags/{resourceArn}", 200] },
1633
- () => ListTagsForResourceRequest,
1634
- () => ListTagsForResourceResponse,
1661
+ () => ListTagsForResourceRequest$,
1662
+ () => ListTagsForResourceResponse$,
1635
1663
  ];
1636
- var NotifyRecommendationsReceived = [
1664
+ var NotifyRecommendationsReceived$ = [
1637
1665
  9,
1638
1666
  n0,
1639
1667
  _NRR,
1640
1668
  { [_ht]: ["POST", "/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify", 200] },
1641
- () => NotifyRecommendationsReceivedRequest,
1642
- () => NotifyRecommendationsReceivedResponse,
1669
+ () => NotifyRecommendationsReceivedRequest$,
1670
+ () => NotifyRecommendationsReceivedResponse$,
1643
1671
  ];
1644
- var QueryAssistant = [
1672
+ var QueryAssistant$ = [
1645
1673
  9,
1646
1674
  n0,
1647
1675
  _QA,
1648
1676
  { [_ht]: ["POST", "/assistants/{assistantId}/query", 200] },
1649
- () => QueryAssistantRequest,
1650
- () => QueryAssistantResponse,
1677
+ () => QueryAssistantRequest$,
1678
+ () => QueryAssistantResponse$,
1651
1679
  ];
1652
- var RemoveKnowledgeBaseTemplateUri = [
1680
+ var RemoveKnowledgeBaseTemplateUri$ = [
1653
1681
  9,
1654
1682
  n0,
1655
1683
  _RKBTU,
1656
1684
  { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/templateUri", 204] },
1657
- () => RemoveKnowledgeBaseTemplateUriRequest,
1658
- () => RemoveKnowledgeBaseTemplateUriResponse,
1685
+ () => RemoveKnowledgeBaseTemplateUriRequest$,
1686
+ () => RemoveKnowledgeBaseTemplateUriResponse$,
1659
1687
  ];
1660
- var SearchContent = [
1688
+ var SearchContent$ = [
1661
1689
  9,
1662
1690
  n0,
1663
1691
  _SCe,
1664
1692
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search", 200] },
1665
- () => SearchContentRequest,
1666
- () => SearchContentResponse,
1693
+ () => SearchContentRequest$,
1694
+ () => SearchContentResponse$,
1667
1695
  ];
1668
- var SearchQuickResponses = [
1696
+ var SearchQuickResponses$ = [
1669
1697
  9,
1670
1698
  n0,
1671
1699
  _SQR,
1672
1700
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search/quickResponses", 200] },
1673
- () => SearchQuickResponsesRequest,
1674
- () => SearchQuickResponsesResponse,
1701
+ () => SearchQuickResponsesRequest$,
1702
+ () => SearchQuickResponsesResponse$,
1675
1703
  ];
1676
- var SearchSessions = [
1704
+ var SearchSessions$ = [
1677
1705
  9,
1678
1706
  n0,
1679
1707
  _SSea,
1680
1708
  { [_ht]: ["POST", "/assistants/{assistantId}/searchSessions", 200] },
1681
- () => SearchSessionsRequest,
1682
- () => SearchSessionsResponse,
1709
+ () => SearchSessionsRequest$,
1710
+ () => SearchSessionsResponse$,
1683
1711
  ];
1684
- var StartContentUpload = [
1712
+ var StartContentUpload$ = [
1685
1713
  9,
1686
1714
  n0,
1687
1715
  _SCU,
1688
1716
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/upload", 200] },
1689
- () => StartContentUploadRequest,
1690
- () => StartContentUploadResponse,
1717
+ () => StartContentUploadRequest$,
1718
+ () => StartContentUploadResponse$,
1691
1719
  ];
1692
- var StartImportJob = [
1720
+ var StartImportJob$ = [
1693
1721
  9,
1694
1722
  n0,
1695
1723
  _SIJ,
1696
1724
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200] },
1697
- () => StartImportJobRequest,
1698
- () => StartImportJobResponse,
1725
+ () => StartImportJobRequest$,
1726
+ () => StartImportJobResponse$,
1699
1727
  ];
1700
- var TagResource = [
1728
+ var TagResource$ = [
1701
1729
  9,
1702
1730
  n0,
1703
1731
  _TR,
1704
1732
  { [_ht]: ["POST", "/tags/{resourceArn}", 200] },
1705
- () => TagResourceRequest,
1706
- () => TagResourceResponse,
1733
+ () => TagResourceRequest$,
1734
+ () => TagResourceResponse$,
1707
1735
  ];
1708
- var UntagResource = [
1736
+ var UntagResource$ = [
1709
1737
  9,
1710
1738
  n0,
1711
1739
  _UR,
1712
1740
  { [_ht]: ["DELETE", "/tags/{resourceArn}", 200] },
1713
- () => UntagResourceRequest,
1714
- () => UntagResourceResponse,
1741
+ () => UntagResourceRequest$,
1742
+ () => UntagResourceResponse$,
1715
1743
  ];
1716
- var UpdateContent = [
1744
+ var UpdateContent$ = [
1717
1745
  9,
1718
1746
  n0,
1719
1747
  _UC,
1720
1748
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200] },
1721
- () => UpdateContentRequest,
1722
- () => UpdateContentResponse,
1749
+ () => UpdateContentRequest$,
1750
+ () => UpdateContentResponse$,
1723
1751
  ];
1724
- var UpdateKnowledgeBaseTemplateUri = [
1752
+ var UpdateKnowledgeBaseTemplateUri$ = [
1725
1753
  9,
1726
1754
  n0,
1727
1755
  _UKBTU,
1728
1756
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/templateUri", 200] },
1729
- () => UpdateKnowledgeBaseTemplateUriRequest,
1730
- () => UpdateKnowledgeBaseTemplateUriResponse,
1757
+ () => UpdateKnowledgeBaseTemplateUriRequest$,
1758
+ () => UpdateKnowledgeBaseTemplateUriResponse$,
1731
1759
  ];
1732
- var UpdateQuickResponse = [
1760
+ var UpdateQuickResponse$ = [
1733
1761
  9,
1734
1762
  n0,
1735
1763
  _UQR,
1736
1764
  { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200] },
1737
- () => UpdateQuickResponseRequest,
1738
- () => UpdateQuickResponseResponse,
1765
+ () => UpdateQuickResponseRequest$,
1766
+ () => UpdateQuickResponseResponse$,
1739
1767
  ];
1740
1768
 
1741
1769
  class CreateAssistantAssociationCommand extends smithyClient.Command
@@ -1746,7 +1774,7 @@ class CreateAssistantAssociationCommand extends smithyClient.Command
1746
1774
  })
1747
1775
  .s("WisdomService", "CreateAssistantAssociation", {})
1748
1776
  .n("WisdomClient", "CreateAssistantAssociationCommand")
1749
- .sc(CreateAssistantAssociation)
1777
+ .sc(CreateAssistantAssociation$)
1750
1778
  .build() {
1751
1779
  }
1752
1780
 
@@ -1758,7 +1786,7 @@ class CreateAssistantCommand extends smithyClient.Command
1758
1786
  })
1759
1787
  .s("WisdomService", "CreateAssistant", {})
1760
1788
  .n("WisdomClient", "CreateAssistantCommand")
1761
- .sc(CreateAssistant)
1789
+ .sc(CreateAssistant$)
1762
1790
  .build() {
1763
1791
  }
1764
1792
 
@@ -1770,7 +1798,7 @@ class CreateContentCommand extends smithyClient.Command
1770
1798
  })
1771
1799
  .s("WisdomService", "CreateContent", {})
1772
1800
  .n("WisdomClient", "CreateContentCommand")
1773
- .sc(CreateContent)
1801
+ .sc(CreateContent$)
1774
1802
  .build() {
1775
1803
  }
1776
1804
 
@@ -1782,7 +1810,7 @@ class CreateKnowledgeBaseCommand extends smithyClient.Command
1782
1810
  })
1783
1811
  .s("WisdomService", "CreateKnowledgeBase", {})
1784
1812
  .n("WisdomClient", "CreateKnowledgeBaseCommand")
1785
- .sc(CreateKnowledgeBase)
1813
+ .sc(CreateKnowledgeBase$)
1786
1814
  .build() {
1787
1815
  }
1788
1816
 
@@ -1794,7 +1822,7 @@ class CreateQuickResponseCommand extends smithyClient.Command
1794
1822
  })
1795
1823
  .s("WisdomService", "CreateQuickResponse", {})
1796
1824
  .n("WisdomClient", "CreateQuickResponseCommand")
1797
- .sc(CreateQuickResponse)
1825
+ .sc(CreateQuickResponse$)
1798
1826
  .build() {
1799
1827
  }
1800
1828
 
@@ -1806,7 +1834,7 @@ class CreateSessionCommand extends smithyClient.Command
1806
1834
  })
1807
1835
  .s("WisdomService", "CreateSession", {})
1808
1836
  .n("WisdomClient", "CreateSessionCommand")
1809
- .sc(CreateSession)
1837
+ .sc(CreateSession$)
1810
1838
  .build() {
1811
1839
  }
1812
1840
 
@@ -1818,7 +1846,7 @@ class DeleteAssistantAssociationCommand extends smithyClient.Command
1818
1846
  })
1819
1847
  .s("WisdomService", "DeleteAssistantAssociation", {})
1820
1848
  .n("WisdomClient", "DeleteAssistantAssociationCommand")
1821
- .sc(DeleteAssistantAssociation)
1849
+ .sc(DeleteAssistantAssociation$)
1822
1850
  .build() {
1823
1851
  }
1824
1852
 
@@ -1830,7 +1858,7 @@ class DeleteAssistantCommand extends smithyClient.Command
1830
1858
  })
1831
1859
  .s("WisdomService", "DeleteAssistant", {})
1832
1860
  .n("WisdomClient", "DeleteAssistantCommand")
1833
- .sc(DeleteAssistant)
1861
+ .sc(DeleteAssistant$)
1834
1862
  .build() {
1835
1863
  }
1836
1864
 
@@ -1842,7 +1870,7 @@ class DeleteContentCommand extends smithyClient.Command
1842
1870
  })
1843
1871
  .s("WisdomService", "DeleteContent", {})
1844
1872
  .n("WisdomClient", "DeleteContentCommand")
1845
- .sc(DeleteContent)
1873
+ .sc(DeleteContent$)
1846
1874
  .build() {
1847
1875
  }
1848
1876
 
@@ -1854,7 +1882,7 @@ class DeleteImportJobCommand extends smithyClient.Command
1854
1882
  })
1855
1883
  .s("WisdomService", "DeleteImportJob", {})
1856
1884
  .n("WisdomClient", "DeleteImportJobCommand")
1857
- .sc(DeleteImportJob)
1885
+ .sc(DeleteImportJob$)
1858
1886
  .build() {
1859
1887
  }
1860
1888
 
@@ -1866,7 +1894,7 @@ class DeleteKnowledgeBaseCommand extends smithyClient.Command
1866
1894
  })
1867
1895
  .s("WisdomService", "DeleteKnowledgeBase", {})
1868
1896
  .n("WisdomClient", "DeleteKnowledgeBaseCommand")
1869
- .sc(DeleteKnowledgeBase)
1897
+ .sc(DeleteKnowledgeBase$)
1870
1898
  .build() {
1871
1899
  }
1872
1900
 
@@ -1878,7 +1906,7 @@ class DeleteQuickResponseCommand extends smithyClient.Command
1878
1906
  })
1879
1907
  .s("WisdomService", "DeleteQuickResponse", {})
1880
1908
  .n("WisdomClient", "DeleteQuickResponseCommand")
1881
- .sc(DeleteQuickResponse)
1909
+ .sc(DeleteQuickResponse$)
1882
1910
  .build() {
1883
1911
  }
1884
1912
 
@@ -1890,7 +1918,7 @@ class GetAssistantAssociationCommand extends smithyClient.Command
1890
1918
  })
1891
1919
  .s("WisdomService", "GetAssistantAssociation", {})
1892
1920
  .n("WisdomClient", "GetAssistantAssociationCommand")
1893
- .sc(GetAssistantAssociation)
1921
+ .sc(GetAssistantAssociation$)
1894
1922
  .build() {
1895
1923
  }
1896
1924
 
@@ -1902,7 +1930,7 @@ class GetAssistantCommand extends smithyClient.Command
1902
1930
  })
1903
1931
  .s("WisdomService", "GetAssistant", {})
1904
1932
  .n("WisdomClient", "GetAssistantCommand")
1905
- .sc(GetAssistant)
1933
+ .sc(GetAssistant$)
1906
1934
  .build() {
1907
1935
  }
1908
1936
 
@@ -1914,7 +1942,7 @@ class GetContentCommand extends smithyClient.Command
1914
1942
  })
1915
1943
  .s("WisdomService", "GetContent", {})
1916
1944
  .n("WisdomClient", "GetContentCommand")
1917
- .sc(GetContent)
1945
+ .sc(GetContent$)
1918
1946
  .build() {
1919
1947
  }
1920
1948
 
@@ -1926,7 +1954,7 @@ class GetContentSummaryCommand extends smithyClient.Command
1926
1954
  })
1927
1955
  .s("WisdomService", "GetContentSummary", {})
1928
1956
  .n("WisdomClient", "GetContentSummaryCommand")
1929
- .sc(GetContentSummary)
1957
+ .sc(GetContentSummary$)
1930
1958
  .build() {
1931
1959
  }
1932
1960
 
@@ -1938,7 +1966,7 @@ class GetImportJobCommand extends smithyClient.Command
1938
1966
  })
1939
1967
  .s("WisdomService", "GetImportJob", {})
1940
1968
  .n("WisdomClient", "GetImportJobCommand")
1941
- .sc(GetImportJob)
1969
+ .sc(GetImportJob$)
1942
1970
  .build() {
1943
1971
  }
1944
1972
 
@@ -1950,7 +1978,7 @@ class GetKnowledgeBaseCommand extends smithyClient.Command
1950
1978
  })
1951
1979
  .s("WisdomService", "GetKnowledgeBase", {})
1952
1980
  .n("WisdomClient", "GetKnowledgeBaseCommand")
1953
- .sc(GetKnowledgeBase)
1981
+ .sc(GetKnowledgeBase$)
1954
1982
  .build() {
1955
1983
  }
1956
1984
 
@@ -1962,7 +1990,7 @@ class GetQuickResponseCommand extends smithyClient.Command
1962
1990
  })
1963
1991
  .s("WisdomService", "GetQuickResponse", {})
1964
1992
  .n("WisdomClient", "GetQuickResponseCommand")
1965
- .sc(GetQuickResponse)
1993
+ .sc(GetQuickResponse$)
1966
1994
  .build() {
1967
1995
  }
1968
1996
 
@@ -1974,7 +2002,7 @@ class GetRecommendationsCommand extends smithyClient.Command
1974
2002
  })
1975
2003
  .s("WisdomService", "GetRecommendations", {})
1976
2004
  .n("WisdomClient", "GetRecommendationsCommand")
1977
- .sc(GetRecommendations)
2005
+ .sc(GetRecommendations$)
1978
2006
  .build() {
1979
2007
  }
1980
2008
 
@@ -1986,7 +2014,7 @@ class GetSessionCommand extends smithyClient.Command
1986
2014
  })
1987
2015
  .s("WisdomService", "GetSession", {})
1988
2016
  .n("WisdomClient", "GetSessionCommand")
1989
- .sc(GetSession)
2017
+ .sc(GetSession$)
1990
2018
  .build() {
1991
2019
  }
1992
2020
 
@@ -1998,7 +2026,7 @@ class ListAssistantAssociationsCommand extends smithyClient.Command
1998
2026
  })
1999
2027
  .s("WisdomService", "ListAssistantAssociations", {})
2000
2028
  .n("WisdomClient", "ListAssistantAssociationsCommand")
2001
- .sc(ListAssistantAssociations)
2029
+ .sc(ListAssistantAssociations$)
2002
2030
  .build() {
2003
2031
  }
2004
2032
 
@@ -2010,7 +2038,7 @@ class ListAssistantsCommand extends smithyClient.Command
2010
2038
  })
2011
2039
  .s("WisdomService", "ListAssistants", {})
2012
2040
  .n("WisdomClient", "ListAssistantsCommand")
2013
- .sc(ListAssistants)
2041
+ .sc(ListAssistants$)
2014
2042
  .build() {
2015
2043
  }
2016
2044
 
@@ -2022,7 +2050,7 @@ class ListContentsCommand extends smithyClient.Command
2022
2050
  })
2023
2051
  .s("WisdomService", "ListContents", {})
2024
2052
  .n("WisdomClient", "ListContentsCommand")
2025
- .sc(ListContents)
2053
+ .sc(ListContents$)
2026
2054
  .build() {
2027
2055
  }
2028
2056
 
@@ -2034,7 +2062,7 @@ class ListImportJobsCommand extends smithyClient.Command
2034
2062
  })
2035
2063
  .s("WisdomService", "ListImportJobs", {})
2036
2064
  .n("WisdomClient", "ListImportJobsCommand")
2037
- .sc(ListImportJobs)
2065
+ .sc(ListImportJobs$)
2038
2066
  .build() {
2039
2067
  }
2040
2068
 
@@ -2046,7 +2074,7 @@ class ListKnowledgeBasesCommand extends smithyClient.Command
2046
2074
  })
2047
2075
  .s("WisdomService", "ListKnowledgeBases", {})
2048
2076
  .n("WisdomClient", "ListKnowledgeBasesCommand")
2049
- .sc(ListKnowledgeBases)
2077
+ .sc(ListKnowledgeBases$)
2050
2078
  .build() {
2051
2079
  }
2052
2080
 
@@ -2058,7 +2086,7 @@ class ListQuickResponsesCommand extends smithyClient.Command
2058
2086
  })
2059
2087
  .s("WisdomService", "ListQuickResponses", {})
2060
2088
  .n("WisdomClient", "ListQuickResponsesCommand")
2061
- .sc(ListQuickResponses)
2089
+ .sc(ListQuickResponses$)
2062
2090
  .build() {
2063
2091
  }
2064
2092
 
@@ -2070,7 +2098,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2070
2098
  })
2071
2099
  .s("WisdomService", "ListTagsForResource", {})
2072
2100
  .n("WisdomClient", "ListTagsForResourceCommand")
2073
- .sc(ListTagsForResource)
2101
+ .sc(ListTagsForResource$)
2074
2102
  .build() {
2075
2103
  }
2076
2104
 
@@ -2082,7 +2110,7 @@ class NotifyRecommendationsReceivedCommand extends smithyClient.Command
2082
2110
  })
2083
2111
  .s("WisdomService", "NotifyRecommendationsReceived", {})
2084
2112
  .n("WisdomClient", "NotifyRecommendationsReceivedCommand")
2085
- .sc(NotifyRecommendationsReceived)
2113
+ .sc(NotifyRecommendationsReceived$)
2086
2114
  .build() {
2087
2115
  }
2088
2116
 
@@ -2094,7 +2122,7 @@ class QueryAssistantCommand extends smithyClient.Command
2094
2122
  })
2095
2123
  .s("WisdomService", "QueryAssistant", {})
2096
2124
  .n("WisdomClient", "QueryAssistantCommand")
2097
- .sc(QueryAssistant)
2125
+ .sc(QueryAssistant$)
2098
2126
  .build() {
2099
2127
  }
2100
2128
 
@@ -2106,7 +2134,7 @@ class RemoveKnowledgeBaseTemplateUriCommand extends smithyClient.Command
2106
2134
  })
2107
2135
  .s("WisdomService", "RemoveKnowledgeBaseTemplateUri", {})
2108
2136
  .n("WisdomClient", "RemoveKnowledgeBaseTemplateUriCommand")
2109
- .sc(RemoveKnowledgeBaseTemplateUri)
2137
+ .sc(RemoveKnowledgeBaseTemplateUri$)
2110
2138
  .build() {
2111
2139
  }
2112
2140
 
@@ -2118,7 +2146,7 @@ class SearchContentCommand extends smithyClient.Command
2118
2146
  })
2119
2147
  .s("WisdomService", "SearchContent", {})
2120
2148
  .n("WisdomClient", "SearchContentCommand")
2121
- .sc(SearchContent)
2149
+ .sc(SearchContent$)
2122
2150
  .build() {
2123
2151
  }
2124
2152
 
@@ -2130,7 +2158,7 @@ class SearchQuickResponsesCommand extends smithyClient.Command
2130
2158
  })
2131
2159
  .s("WisdomService", "SearchQuickResponses", {})
2132
2160
  .n("WisdomClient", "SearchQuickResponsesCommand")
2133
- .sc(SearchQuickResponses)
2161
+ .sc(SearchQuickResponses$)
2134
2162
  .build() {
2135
2163
  }
2136
2164
 
@@ -2142,7 +2170,7 @@ class SearchSessionsCommand extends smithyClient.Command
2142
2170
  })
2143
2171
  .s("WisdomService", "SearchSessions", {})
2144
2172
  .n("WisdomClient", "SearchSessionsCommand")
2145
- .sc(SearchSessions)
2173
+ .sc(SearchSessions$)
2146
2174
  .build() {
2147
2175
  }
2148
2176
 
@@ -2154,7 +2182,7 @@ class StartContentUploadCommand extends smithyClient.Command
2154
2182
  })
2155
2183
  .s("WisdomService", "StartContentUpload", {})
2156
2184
  .n("WisdomClient", "StartContentUploadCommand")
2157
- .sc(StartContentUpload)
2185
+ .sc(StartContentUpload$)
2158
2186
  .build() {
2159
2187
  }
2160
2188
 
@@ -2166,7 +2194,7 @@ class StartImportJobCommand extends smithyClient.Command
2166
2194
  })
2167
2195
  .s("WisdomService", "StartImportJob", {})
2168
2196
  .n("WisdomClient", "StartImportJobCommand")
2169
- .sc(StartImportJob)
2197
+ .sc(StartImportJob$)
2170
2198
  .build() {
2171
2199
  }
2172
2200
 
@@ -2178,7 +2206,7 @@ class TagResourceCommand extends smithyClient.Command
2178
2206
  })
2179
2207
  .s("WisdomService", "TagResource", {})
2180
2208
  .n("WisdomClient", "TagResourceCommand")
2181
- .sc(TagResource)
2209
+ .sc(TagResource$)
2182
2210
  .build() {
2183
2211
  }
2184
2212
 
@@ -2190,7 +2218,7 @@ class UntagResourceCommand extends smithyClient.Command
2190
2218
  })
2191
2219
  .s("WisdomService", "UntagResource", {})
2192
2220
  .n("WisdomClient", "UntagResourceCommand")
2193
- .sc(UntagResource)
2221
+ .sc(UntagResource$)
2194
2222
  .build() {
2195
2223
  }
2196
2224
 
@@ -2202,7 +2230,7 @@ class UpdateContentCommand extends smithyClient.Command
2202
2230
  })
2203
2231
  .s("WisdomService", "UpdateContent", {})
2204
2232
  .n("WisdomClient", "UpdateContentCommand")
2205
- .sc(UpdateContent)
2233
+ .sc(UpdateContent$)
2206
2234
  .build() {
2207
2235
  }
2208
2236
 
@@ -2214,7 +2242,7 @@ class UpdateKnowledgeBaseTemplateUriCommand extends smithyClient.Command
2214
2242
  })
2215
2243
  .s("WisdomService", "UpdateKnowledgeBaseTemplateUri", {})
2216
2244
  .n("WisdomClient", "UpdateKnowledgeBaseTemplateUriCommand")
2217
- .sc(UpdateKnowledgeBaseTemplateUri)
2245
+ .sc(UpdateKnowledgeBaseTemplateUri$)
2218
2246
  .build() {
2219
2247
  }
2220
2248
 
@@ -2226,7 +2254,7 @@ class UpdateQuickResponseCommand extends smithyClient.Command
2226
2254
  })
2227
2255
  .s("WisdomService", "UpdateQuickResponse", {})
2228
2256
  .n("WisdomClient", "UpdateQuickResponseCommand")
2229
- .sc(UpdateQuickResponse)
2257
+ .sc(UpdateQuickResponse$)
2230
2258
  .build() {
2231
2259
  }
2232
2260
 
@@ -2405,78 +2433,257 @@ Object.defineProperty(exports, "__Client", {
2405
2433
  enumerable: true,
2406
2434
  get: function () { return smithyClient.Client; }
2407
2435
  });
2408
- exports.AccessDeniedException = AccessDeniedException$1;
2436
+ exports.AccessDeniedException = AccessDeniedException;
2437
+ exports.AccessDeniedException$ = AccessDeniedException$;
2438
+ exports.AppIntegrationsConfiguration$ = AppIntegrationsConfiguration$;
2439
+ exports.AssistantAssociationData$ = AssistantAssociationData$;
2440
+ exports.AssistantAssociationInputData$ = AssistantAssociationInputData$;
2441
+ exports.AssistantAssociationOutputData$ = AssistantAssociationOutputData$;
2442
+ exports.AssistantAssociationSummary$ = AssistantAssociationSummary$;
2443
+ exports.AssistantData$ = AssistantData$;
2444
+ exports.AssistantIntegrationConfiguration$ = AssistantIntegrationConfiguration$;
2409
2445
  exports.AssistantStatus = AssistantStatus;
2446
+ exports.AssistantSummary$ = AssistantSummary$;
2410
2447
  exports.AssistantType = AssistantType;
2411
2448
  exports.AssociationType = AssociationType;
2412
- exports.ConflictException = ConflictException$1;
2449
+ exports.Configuration$ = Configuration$;
2450
+ exports.ConflictException = ConflictException;
2451
+ exports.ConflictException$ = ConflictException$;
2452
+ exports.ConnectConfiguration$ = ConnectConfiguration$;
2453
+ exports.ContentData$ = ContentData$;
2454
+ exports.ContentReference$ = ContentReference$;
2413
2455
  exports.ContentStatus = ContentStatus;
2456
+ exports.ContentSummary$ = ContentSummary$;
2457
+ exports.CreateAssistant$ = CreateAssistant$;
2458
+ exports.CreateAssistantAssociation$ = CreateAssistantAssociation$;
2414
2459
  exports.CreateAssistantAssociationCommand = CreateAssistantAssociationCommand;
2460
+ exports.CreateAssistantAssociationRequest$ = CreateAssistantAssociationRequest$;
2461
+ exports.CreateAssistantAssociationResponse$ = CreateAssistantAssociationResponse$;
2415
2462
  exports.CreateAssistantCommand = CreateAssistantCommand;
2463
+ exports.CreateAssistantRequest$ = CreateAssistantRequest$;
2464
+ exports.CreateAssistantResponse$ = CreateAssistantResponse$;
2465
+ exports.CreateContent$ = CreateContent$;
2416
2466
  exports.CreateContentCommand = CreateContentCommand;
2467
+ exports.CreateContentRequest$ = CreateContentRequest$;
2468
+ exports.CreateContentResponse$ = CreateContentResponse$;
2469
+ exports.CreateKnowledgeBase$ = CreateKnowledgeBase$;
2417
2470
  exports.CreateKnowledgeBaseCommand = CreateKnowledgeBaseCommand;
2471
+ exports.CreateKnowledgeBaseRequest$ = CreateKnowledgeBaseRequest$;
2472
+ exports.CreateKnowledgeBaseResponse$ = CreateKnowledgeBaseResponse$;
2473
+ exports.CreateQuickResponse$ = CreateQuickResponse$;
2418
2474
  exports.CreateQuickResponseCommand = CreateQuickResponseCommand;
2475
+ exports.CreateQuickResponseRequest$ = CreateQuickResponseRequest$;
2476
+ exports.CreateQuickResponseResponse$ = CreateQuickResponseResponse$;
2477
+ exports.CreateSession$ = CreateSession$;
2419
2478
  exports.CreateSessionCommand = CreateSessionCommand;
2479
+ exports.CreateSessionRequest$ = CreateSessionRequest$;
2480
+ exports.CreateSessionResponse$ = CreateSessionResponse$;
2481
+ exports.DeleteAssistant$ = DeleteAssistant$;
2482
+ exports.DeleteAssistantAssociation$ = DeleteAssistantAssociation$;
2420
2483
  exports.DeleteAssistantAssociationCommand = DeleteAssistantAssociationCommand;
2484
+ exports.DeleteAssistantAssociationRequest$ = DeleteAssistantAssociationRequest$;
2485
+ exports.DeleteAssistantAssociationResponse$ = DeleteAssistantAssociationResponse$;
2421
2486
  exports.DeleteAssistantCommand = DeleteAssistantCommand;
2487
+ exports.DeleteAssistantRequest$ = DeleteAssistantRequest$;
2488
+ exports.DeleteAssistantResponse$ = DeleteAssistantResponse$;
2489
+ exports.DeleteContent$ = DeleteContent$;
2422
2490
  exports.DeleteContentCommand = DeleteContentCommand;
2491
+ exports.DeleteContentRequest$ = DeleteContentRequest$;
2492
+ exports.DeleteContentResponse$ = DeleteContentResponse$;
2493
+ exports.DeleteImportJob$ = DeleteImportJob$;
2423
2494
  exports.DeleteImportJobCommand = DeleteImportJobCommand;
2495
+ exports.DeleteImportJobRequest$ = DeleteImportJobRequest$;
2496
+ exports.DeleteImportJobResponse$ = DeleteImportJobResponse$;
2497
+ exports.DeleteKnowledgeBase$ = DeleteKnowledgeBase$;
2424
2498
  exports.DeleteKnowledgeBaseCommand = DeleteKnowledgeBaseCommand;
2499
+ exports.DeleteKnowledgeBaseRequest$ = DeleteKnowledgeBaseRequest$;
2500
+ exports.DeleteKnowledgeBaseResponse$ = DeleteKnowledgeBaseResponse$;
2501
+ exports.DeleteQuickResponse$ = DeleteQuickResponse$;
2425
2502
  exports.DeleteQuickResponseCommand = DeleteQuickResponseCommand;
2503
+ exports.DeleteQuickResponseRequest$ = DeleteQuickResponseRequest$;
2504
+ exports.DeleteQuickResponseResponse$ = DeleteQuickResponseResponse$;
2505
+ exports.Document$ = Document$;
2506
+ exports.DocumentText$ = DocumentText$;
2426
2507
  exports.ExternalSource = ExternalSource;
2508
+ exports.ExternalSourceConfiguration$ = ExternalSourceConfiguration$;
2509
+ exports.Filter$ = Filter$;
2427
2510
  exports.FilterField = FilterField;
2428
2511
  exports.FilterOperator = FilterOperator;
2512
+ exports.GetAssistant$ = GetAssistant$;
2513
+ exports.GetAssistantAssociation$ = GetAssistantAssociation$;
2429
2514
  exports.GetAssistantAssociationCommand = GetAssistantAssociationCommand;
2515
+ exports.GetAssistantAssociationRequest$ = GetAssistantAssociationRequest$;
2516
+ exports.GetAssistantAssociationResponse$ = GetAssistantAssociationResponse$;
2430
2517
  exports.GetAssistantCommand = GetAssistantCommand;
2518
+ exports.GetAssistantRequest$ = GetAssistantRequest$;
2519
+ exports.GetAssistantResponse$ = GetAssistantResponse$;
2520
+ exports.GetContent$ = GetContent$;
2431
2521
  exports.GetContentCommand = GetContentCommand;
2522
+ exports.GetContentRequest$ = GetContentRequest$;
2523
+ exports.GetContentResponse$ = GetContentResponse$;
2524
+ exports.GetContentSummary$ = GetContentSummary$;
2432
2525
  exports.GetContentSummaryCommand = GetContentSummaryCommand;
2526
+ exports.GetContentSummaryRequest$ = GetContentSummaryRequest$;
2527
+ exports.GetContentSummaryResponse$ = GetContentSummaryResponse$;
2528
+ exports.GetImportJob$ = GetImportJob$;
2433
2529
  exports.GetImportJobCommand = GetImportJobCommand;
2530
+ exports.GetImportJobRequest$ = GetImportJobRequest$;
2531
+ exports.GetImportJobResponse$ = GetImportJobResponse$;
2532
+ exports.GetKnowledgeBase$ = GetKnowledgeBase$;
2434
2533
  exports.GetKnowledgeBaseCommand = GetKnowledgeBaseCommand;
2534
+ exports.GetKnowledgeBaseRequest$ = GetKnowledgeBaseRequest$;
2535
+ exports.GetKnowledgeBaseResponse$ = GetKnowledgeBaseResponse$;
2536
+ exports.GetQuickResponse$ = GetQuickResponse$;
2435
2537
  exports.GetQuickResponseCommand = GetQuickResponseCommand;
2538
+ exports.GetQuickResponseRequest$ = GetQuickResponseRequest$;
2539
+ exports.GetQuickResponseResponse$ = GetQuickResponseResponse$;
2540
+ exports.GetRecommendations$ = GetRecommendations$;
2436
2541
  exports.GetRecommendationsCommand = GetRecommendationsCommand;
2542
+ exports.GetRecommendationsRequest$ = GetRecommendationsRequest$;
2543
+ exports.GetRecommendationsResponse$ = GetRecommendationsResponse$;
2544
+ exports.GetSession$ = GetSession$;
2437
2545
  exports.GetSessionCommand = GetSessionCommand;
2546
+ exports.GetSessionRequest$ = GetSessionRequest$;
2547
+ exports.GetSessionResponse$ = GetSessionResponse$;
2548
+ exports.GroupingConfiguration$ = GroupingConfiguration$;
2549
+ exports.Highlight$ = Highlight$;
2550
+ exports.ImportJobData$ = ImportJobData$;
2438
2551
  exports.ImportJobStatus = ImportJobStatus;
2552
+ exports.ImportJobSummary$ = ImportJobSummary$;
2439
2553
  exports.ImportJobType = ImportJobType;
2554
+ exports.KnowledgeBaseAssociationData$ = KnowledgeBaseAssociationData$;
2555
+ exports.KnowledgeBaseData$ = KnowledgeBaseData$;
2440
2556
  exports.KnowledgeBaseStatus = KnowledgeBaseStatus;
2557
+ exports.KnowledgeBaseSummary$ = KnowledgeBaseSummary$;
2441
2558
  exports.KnowledgeBaseType = KnowledgeBaseType;
2559
+ exports.ListAssistantAssociations$ = ListAssistantAssociations$;
2442
2560
  exports.ListAssistantAssociationsCommand = ListAssistantAssociationsCommand;
2561
+ exports.ListAssistantAssociationsRequest$ = ListAssistantAssociationsRequest$;
2562
+ exports.ListAssistantAssociationsResponse$ = ListAssistantAssociationsResponse$;
2563
+ exports.ListAssistants$ = ListAssistants$;
2443
2564
  exports.ListAssistantsCommand = ListAssistantsCommand;
2565
+ exports.ListAssistantsRequest$ = ListAssistantsRequest$;
2566
+ exports.ListAssistantsResponse$ = ListAssistantsResponse$;
2567
+ exports.ListContents$ = ListContents$;
2444
2568
  exports.ListContentsCommand = ListContentsCommand;
2569
+ exports.ListContentsRequest$ = ListContentsRequest$;
2570
+ exports.ListContentsResponse$ = ListContentsResponse$;
2571
+ exports.ListImportJobs$ = ListImportJobs$;
2445
2572
  exports.ListImportJobsCommand = ListImportJobsCommand;
2573
+ exports.ListImportJobsRequest$ = ListImportJobsRequest$;
2574
+ exports.ListImportJobsResponse$ = ListImportJobsResponse$;
2575
+ exports.ListKnowledgeBases$ = ListKnowledgeBases$;
2446
2576
  exports.ListKnowledgeBasesCommand = ListKnowledgeBasesCommand;
2577
+ exports.ListKnowledgeBasesRequest$ = ListKnowledgeBasesRequest$;
2578
+ exports.ListKnowledgeBasesResponse$ = ListKnowledgeBasesResponse$;
2579
+ exports.ListQuickResponses$ = ListQuickResponses$;
2447
2580
  exports.ListQuickResponsesCommand = ListQuickResponsesCommand;
2581
+ exports.ListQuickResponsesRequest$ = ListQuickResponsesRequest$;
2582
+ exports.ListQuickResponsesResponse$ = ListQuickResponsesResponse$;
2583
+ exports.ListTagsForResource$ = ListTagsForResource$;
2448
2584
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2585
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2586
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2587
+ exports.NotifyRecommendationsReceived$ = NotifyRecommendationsReceived$;
2449
2588
  exports.NotifyRecommendationsReceivedCommand = NotifyRecommendationsReceivedCommand;
2589
+ exports.NotifyRecommendationsReceivedError$ = NotifyRecommendationsReceivedError$;
2590
+ exports.NotifyRecommendationsReceivedRequest$ = NotifyRecommendationsReceivedRequest$;
2591
+ exports.NotifyRecommendationsReceivedResponse$ = NotifyRecommendationsReceivedResponse$;
2450
2592
  exports.Order = Order;
2451
- exports.PreconditionFailedException = PreconditionFailedException$1;
2593
+ exports.PreconditionFailedException = PreconditionFailedException;
2594
+ exports.PreconditionFailedException$ = PreconditionFailedException$;
2452
2595
  exports.Priority = Priority;
2596
+ exports.QueryAssistant$ = QueryAssistant$;
2453
2597
  exports.QueryAssistantCommand = QueryAssistantCommand;
2598
+ exports.QueryAssistantRequest$ = QueryAssistantRequest$;
2599
+ exports.QueryAssistantResponse$ = QueryAssistantResponse$;
2600
+ exports.QueryRecommendationTriggerData$ = QueryRecommendationTriggerData$;
2601
+ exports.QuickResponseContentProvider$ = QuickResponseContentProvider$;
2602
+ exports.QuickResponseContents$ = QuickResponseContents$;
2603
+ exports.QuickResponseData$ = QuickResponseData$;
2604
+ exports.QuickResponseDataProvider$ = QuickResponseDataProvider$;
2605
+ exports.QuickResponseFilterField$ = QuickResponseFilterField$;
2454
2606
  exports.QuickResponseFilterOperator = QuickResponseFilterOperator;
2607
+ exports.QuickResponseOrderField$ = QuickResponseOrderField$;
2608
+ exports.QuickResponseQueryField$ = QuickResponseQueryField$;
2455
2609
  exports.QuickResponseQueryOperator = QuickResponseQueryOperator;
2610
+ exports.QuickResponseSearchExpression$ = QuickResponseSearchExpression$;
2611
+ exports.QuickResponseSearchResultData$ = QuickResponseSearchResultData$;
2456
2612
  exports.QuickResponseStatus = QuickResponseStatus;
2613
+ exports.QuickResponseSummary$ = QuickResponseSummary$;
2614
+ exports.RecommendationData$ = RecommendationData$;
2457
2615
  exports.RecommendationSourceType = RecommendationSourceType;
2616
+ exports.RecommendationTrigger$ = RecommendationTrigger$;
2617
+ exports.RecommendationTriggerData$ = RecommendationTriggerData$;
2458
2618
  exports.RecommendationTriggerType = RecommendationTriggerType;
2459
2619
  exports.RecommendationType = RecommendationType;
2460
2620
  exports.RelevanceLevel = RelevanceLevel;
2621
+ exports.RemoveKnowledgeBaseTemplateUri$ = RemoveKnowledgeBaseTemplateUri$;
2461
2622
  exports.RemoveKnowledgeBaseTemplateUriCommand = RemoveKnowledgeBaseTemplateUriCommand;
2462
- exports.RequestTimeoutException = RequestTimeoutException$1;
2463
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2623
+ exports.RemoveKnowledgeBaseTemplateUriRequest$ = RemoveKnowledgeBaseTemplateUriRequest$;
2624
+ exports.RemoveKnowledgeBaseTemplateUriResponse$ = RemoveKnowledgeBaseTemplateUriResponse$;
2625
+ exports.RenderingConfiguration$ = RenderingConfiguration$;
2626
+ exports.RequestTimeoutException = RequestTimeoutException;
2627
+ exports.RequestTimeoutException$ = RequestTimeoutException$;
2628
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2629
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2630
+ exports.ResultData$ = ResultData$;
2631
+ exports.SearchContent$ = SearchContent$;
2464
2632
  exports.SearchContentCommand = SearchContentCommand;
2633
+ exports.SearchContentRequest$ = SearchContentRequest$;
2634
+ exports.SearchContentResponse$ = SearchContentResponse$;
2635
+ exports.SearchExpression$ = SearchExpression$;
2636
+ exports.SearchQuickResponses$ = SearchQuickResponses$;
2465
2637
  exports.SearchQuickResponsesCommand = SearchQuickResponsesCommand;
2638
+ exports.SearchQuickResponsesRequest$ = SearchQuickResponsesRequest$;
2639
+ exports.SearchQuickResponsesResponse$ = SearchQuickResponsesResponse$;
2640
+ exports.SearchSessions$ = SearchSessions$;
2466
2641
  exports.SearchSessionsCommand = SearchSessionsCommand;
2467
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2642
+ exports.SearchSessionsRequest$ = SearchSessionsRequest$;
2643
+ exports.SearchSessionsResponse$ = SearchSessionsResponse$;
2644
+ exports.ServerSideEncryptionConfiguration$ = ServerSideEncryptionConfiguration$;
2645
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2646
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2647
+ exports.SessionData$ = SessionData$;
2648
+ exports.SessionIntegrationConfiguration$ = SessionIntegrationConfiguration$;
2649
+ exports.SessionSummary$ = SessionSummary$;
2650
+ exports.SourceConfiguration$ = SourceConfiguration$;
2651
+ exports.StartContentUpload$ = StartContentUpload$;
2468
2652
  exports.StartContentUploadCommand = StartContentUploadCommand;
2653
+ exports.StartContentUploadRequest$ = StartContentUploadRequest$;
2654
+ exports.StartContentUploadResponse$ = StartContentUploadResponse$;
2655
+ exports.StartImportJob$ = StartImportJob$;
2469
2656
  exports.StartImportJobCommand = StartImportJobCommand;
2657
+ exports.StartImportJobRequest$ = StartImportJobRequest$;
2658
+ exports.StartImportJobResponse$ = StartImportJobResponse$;
2659
+ exports.TagResource$ = TagResource$;
2470
2660
  exports.TagResourceCommand = TagResourceCommand;
2471
- exports.TooManyTagsException = TooManyTagsException$1;
2661
+ exports.TagResourceRequest$ = TagResourceRequest$;
2662
+ exports.TagResourceResponse$ = TagResourceResponse$;
2663
+ exports.TooManyTagsException = TooManyTagsException;
2664
+ exports.TooManyTagsException$ = TooManyTagsException$;
2665
+ exports.UntagResource$ = UntagResource$;
2472
2666
  exports.UntagResourceCommand = UntagResourceCommand;
2667
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2668
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2669
+ exports.UpdateContent$ = UpdateContent$;
2473
2670
  exports.UpdateContentCommand = UpdateContentCommand;
2671
+ exports.UpdateContentRequest$ = UpdateContentRequest$;
2672
+ exports.UpdateContentResponse$ = UpdateContentResponse$;
2673
+ exports.UpdateKnowledgeBaseTemplateUri$ = UpdateKnowledgeBaseTemplateUri$;
2474
2674
  exports.UpdateKnowledgeBaseTemplateUriCommand = UpdateKnowledgeBaseTemplateUriCommand;
2675
+ exports.UpdateKnowledgeBaseTemplateUriRequest$ = UpdateKnowledgeBaseTemplateUriRequest$;
2676
+ exports.UpdateKnowledgeBaseTemplateUriResponse$ = UpdateKnowledgeBaseTemplateUriResponse$;
2677
+ exports.UpdateQuickResponse$ = UpdateQuickResponse$;
2475
2678
  exports.UpdateQuickResponseCommand = UpdateQuickResponseCommand;
2476
- exports.ValidationException = ValidationException$1;
2679
+ exports.UpdateQuickResponseRequest$ = UpdateQuickResponseRequest$;
2680
+ exports.UpdateQuickResponseResponse$ = UpdateQuickResponseResponse$;
2681
+ exports.ValidationException = ValidationException;
2682
+ exports.ValidationException$ = ValidationException$;
2477
2683
  exports.Wisdom = Wisdom;
2478
2684
  exports.WisdomClient = WisdomClient;
2479
- exports.WisdomServiceException = WisdomServiceException$1;
2685
+ exports.WisdomServiceException = WisdomServiceException;
2686
+ exports.WisdomServiceException$ = WisdomServiceException$;
2480
2687
  exports.paginateListAssistantAssociations = paginateListAssistantAssociations;
2481
2688
  exports.paginateListAssistants = paginateListAssistants;
2482
2689
  exports.paginateListContents = paginateListContents;