@aws-sdk/client-qconnect 3.699.0 → 3.709.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 (124) hide show
  1. package/README.md +88 -0
  2. package/dist-cjs/index.js +1188 -127
  3. package/dist-es/QConnect.js +22 -0
  4. package/dist-es/commands/CreateAIGuardrailCommand.js +23 -0
  5. package/dist-es/commands/CreateAIGuardrailVersionCommand.js +23 -0
  6. package/dist-es/commands/CreateQuickResponseCommand.js +1 -1
  7. package/dist-es/commands/DeleteAIGuardrailCommand.js +22 -0
  8. package/dist-es/commands/DeleteAIGuardrailVersionCommand.js +22 -0
  9. package/dist-es/commands/GetAIGuardrailCommand.js +23 -0
  10. package/dist-es/commands/GetImportJobCommand.js +1 -1
  11. package/dist-es/commands/GetKnowledgeBaseCommand.js +1 -1
  12. package/dist-es/commands/GetMessageTemplateCommand.js +1 -1
  13. package/dist-es/commands/GetNextMessageCommand.js +23 -0
  14. package/dist-es/commands/GetQuickResponseCommand.js +1 -1
  15. package/dist-es/commands/ListAIGuardrailVersionsCommand.js +23 -0
  16. package/dist-es/commands/ListAIGuardrailsCommand.js +23 -0
  17. package/dist-es/commands/ListKnowledgeBasesCommand.js +1 -1
  18. package/dist-es/commands/ListMessagesCommand.js +23 -0
  19. package/dist-es/commands/ListQuickResponsesCommand.js +1 -1
  20. package/dist-es/commands/RenderMessageTemplateCommand.js +1 -1
  21. package/dist-es/commands/SendMessageCommand.js +23 -0
  22. package/dist-es/commands/UpdateAIGuardrailCommand.js +23 -0
  23. package/dist-es/commands/UpdateMessageTemplateCommand.js +1 -1
  24. package/dist-es/commands/UpdateMessageTemplateMetadataCommand.js +1 -1
  25. package/dist-es/commands/UpdateQuickResponseCommand.js +1 -1
  26. package/dist-es/commands/index.js +11 -0
  27. package/dist-es/models/models_0.js +310 -166
  28. package/dist-es/models/models_1.js +167 -1
  29. package/dist-es/pagination/ListAIGuardrailVersionsPaginator.js +4 -0
  30. package/dist-es/pagination/ListAIGuardrailsPaginator.js +4 -0
  31. package/dist-es/pagination/ListMessagesPaginator.js +4 -0
  32. package/dist-es/pagination/index.js +3 -0
  33. package/dist-es/protocols/Aws_restJson1.js +443 -1
  34. package/dist-types/QConnect.d.ts +77 -0
  35. package/dist-types/QConnectClient.d.ts +13 -2
  36. package/dist-types/commands/CreateAIAgentCommand.d.ts +62 -0
  37. package/dist-types/commands/CreateAIAgentVersionCommand.d.ts +31 -0
  38. package/dist-types/commands/CreateAIGuardrailCommand.d.ts +231 -0
  39. package/dist-types/commands/CreateAIGuardrailVersionCommand.d.ts +169 -0
  40. package/dist-types/commands/CreateQuickResponseCommand.d.ts +1 -1
  41. package/dist-types/commands/DeactivateMessageTemplateCommand.d.ts +1 -1
  42. package/dist-types/commands/DeleteAIGuardrailCommand.d.ts +88 -0
  43. package/dist-types/commands/DeleteAIGuardrailVersionCommand.d.ts +89 -0
  44. package/dist-types/commands/DeleteImportJobCommand.d.ts +1 -1
  45. package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +1 -1
  46. package/dist-types/commands/DeleteMessageTemplateAttachmentCommand.d.ts +1 -1
  47. package/dist-types/commands/DeleteMessageTemplateCommand.d.ts +1 -1
  48. package/dist-types/commands/DeleteQuickResponseCommand.d.ts +1 -1
  49. package/dist-types/commands/GetAIAgentCommand.d.ts +31 -0
  50. package/dist-types/commands/GetAIGuardrailCommand.d.ts +157 -0
  51. package/dist-types/commands/GetImportJobCommand.d.ts +1 -1
  52. package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +1 -1
  53. package/dist-types/commands/GetMessageTemplateCommand.d.ts +4 -3
  54. package/dist-types/commands/GetNextMessageCommand.d.ts +106 -0
  55. package/dist-types/commands/GetQuickResponseCommand.d.ts +1 -1
  56. package/dist-types/commands/ListAIAgentVersionsCommand.d.ts +31 -0
  57. package/dist-types/commands/ListAIAgentsCommand.d.ts +31 -0
  58. package/dist-types/commands/ListAIGuardrailVersionsCommand.d.ts +105 -0
  59. package/dist-types/commands/ListAIGuardrailsCommand.d.ts +101 -0
  60. package/dist-types/commands/ListImportJobsCommand.d.ts +1 -1
  61. package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +1 -1
  62. package/dist-types/commands/ListMessageTemplateVersionsCommand.d.ts +1 -1
  63. package/dist-types/commands/ListMessageTemplatesCommand.d.ts +1 -1
  64. package/dist-types/commands/ListMessagesCommand.d.ts +95 -0
  65. package/dist-types/commands/ListQuickResponsesCommand.d.ts +1 -1
  66. package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +1 -2
  67. package/dist-types/commands/RenderMessageTemplateCommand.d.ts +1 -1
  68. package/dist-types/commands/SendMessageCommand.d.ts +114 -0
  69. package/dist-types/commands/UpdateAIAgentCommand.d.ts +62 -0
  70. package/dist-types/commands/UpdateAIGuardrailCommand.d.ts +224 -0
  71. package/dist-types/commands/UpdateMessageTemplateCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateMessageTemplateMetadataCommand.d.ts +1 -1
  73. package/dist-types/commands/UpdateQuickResponseCommand.d.ts +1 -1
  74. package/dist-types/commands/index.d.ts +11 -0
  75. package/dist-types/models/models_0.d.ts +3820 -3619
  76. package/dist-types/models/models_1.d.ts +1513 -1
  77. package/dist-types/pagination/ListAIGuardrailVersionsPaginator.d.ts +7 -0
  78. package/dist-types/pagination/ListAIGuardrailsPaginator.d.ts +7 -0
  79. package/dist-types/pagination/ListMessagesPaginator.d.ts +7 -0
  80. package/dist-types/pagination/index.d.ts +3 -0
  81. package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
  82. package/dist-types/ts3.4/QConnect.d.ts +187 -0
  83. package/dist-types/ts3.4/QConnectClient.d.ts +66 -0
  84. package/dist-types/ts3.4/commands/CreateAIGuardrailCommand.d.ts +51 -0
  85. package/dist-types/ts3.4/commands/CreateAIGuardrailVersionCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/DeactivateMessageTemplateCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/DeleteAIGuardrailCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/DeleteAIGuardrailVersionCommand.d.ts +51 -0
  90. package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/DeleteMessageTemplateAttachmentCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/DeleteMessageTemplateCommand.d.ts +1 -1
  94. package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/GetAIGuardrailCommand.d.ts +50 -0
  96. package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/GetMessageTemplateCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/GetNextMessageCommand.d.ts +50 -0
  100. package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +1 -1
  101. package/dist-types/ts3.4/commands/ListAIGuardrailVersionsCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListAIGuardrailsCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +1 -1
  104. package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +1 -1
  105. package/dist-types/ts3.4/commands/ListMessageTemplateVersionsCommand.d.ts +1 -1
  106. package/dist-types/ts3.4/commands/ListMessageTemplatesCommand.d.ts +1 -1
  107. package/dist-types/ts3.4/commands/ListMessagesCommand.d.ts +47 -0
  108. package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +1 -1
  109. package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +4 -2
  110. package/dist-types/ts3.4/commands/RenderMessageTemplateCommand.d.ts +1 -1
  111. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/UpdateAIGuardrailCommand.d.ts +51 -0
  113. package/dist-types/ts3.4/commands/UpdateMessageTemplateCommand.d.ts +1 -1
  114. package/dist-types/ts3.4/commands/UpdateMessageTemplateMetadataCommand.d.ts +1 -1
  115. package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +1 -1
  116. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +482 -441
  118. package/dist-types/ts3.4/models/models_1.d.ts +437 -5
  119. package/dist-types/ts3.4/pagination/ListAIGuardrailVersionsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListAIGuardrailsPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/ListMessagesPaginator.d.ts +11 -0
  122. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  123. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
  124. package/package.json +35 -35
@@ -15,6 +15,14 @@ import {
15
15
  CreateAIAgentVersionCommandInput,
16
16
  CreateAIAgentVersionCommandOutput,
17
17
  } from "../commands/CreateAIAgentVersionCommand";
18
+ import {
19
+ CreateAIGuardrailCommandInput,
20
+ CreateAIGuardrailCommandOutput,
21
+ } from "../commands/CreateAIGuardrailCommand";
22
+ import {
23
+ CreateAIGuardrailVersionCommandInput,
24
+ CreateAIGuardrailVersionCommandOutput,
25
+ } from "../commands/CreateAIGuardrailVersionCommand";
18
26
  import {
19
27
  CreateAIPromptCommandInput,
20
28
  CreateAIPromptCommandOutput,
@@ -75,6 +83,14 @@ import {
75
83
  DeleteAIAgentVersionCommandInput,
76
84
  DeleteAIAgentVersionCommandOutput,
77
85
  } from "../commands/DeleteAIAgentVersionCommand";
86
+ import {
87
+ DeleteAIGuardrailCommandInput,
88
+ DeleteAIGuardrailCommandOutput,
89
+ } from "../commands/DeleteAIGuardrailCommand";
90
+ import {
91
+ DeleteAIGuardrailVersionCommandInput,
92
+ DeleteAIGuardrailVersionCommandOutput,
93
+ } from "../commands/DeleteAIGuardrailVersionCommand";
78
94
  import {
79
95
  DeleteAIPromptCommandInput,
80
96
  DeleteAIPromptCommandOutput,
@@ -123,6 +139,10 @@ import {
123
139
  GetAIAgentCommandInput,
124
140
  GetAIAgentCommandOutput,
125
141
  } from "../commands/GetAIAgentCommand";
142
+ import {
143
+ GetAIGuardrailCommandInput,
144
+ GetAIGuardrailCommandOutput,
145
+ } from "../commands/GetAIGuardrailCommand";
126
146
  import {
127
147
  GetAIPromptCommandInput,
128
148
  GetAIPromptCommandOutput,
@@ -159,6 +179,10 @@ import {
159
179
  GetMessageTemplateCommandInput,
160
180
  GetMessageTemplateCommandOutput,
161
181
  } from "../commands/GetMessageTemplateCommand";
182
+ import {
183
+ GetNextMessageCommandInput,
184
+ GetNextMessageCommandOutput,
185
+ } from "../commands/GetNextMessageCommand";
162
186
  import {
163
187
  GetQuickResponseCommandInput,
164
188
  GetQuickResponseCommandOutput,
@@ -179,6 +203,14 @@ import {
179
203
  ListAIAgentVersionsCommandInput,
180
204
  ListAIAgentVersionsCommandOutput,
181
205
  } from "../commands/ListAIAgentVersionsCommand";
206
+ import {
207
+ ListAIGuardrailsCommandInput,
208
+ ListAIGuardrailsCommandOutput,
209
+ } from "../commands/ListAIGuardrailsCommand";
210
+ import {
211
+ ListAIGuardrailVersionsCommandInput,
212
+ ListAIGuardrailVersionsCommandOutput,
213
+ } from "../commands/ListAIGuardrailVersionsCommand";
182
214
  import {
183
215
  ListAIPromptsCommandInput,
184
216
  ListAIPromptsCommandOutput,
@@ -211,6 +243,10 @@ import {
211
243
  ListKnowledgeBasesCommandInput,
212
244
  ListKnowledgeBasesCommandOutput,
213
245
  } from "../commands/ListKnowledgeBasesCommand";
246
+ import {
247
+ ListMessagesCommandInput,
248
+ ListMessagesCommandOutput,
249
+ } from "../commands/ListMessagesCommand";
214
250
  import {
215
251
  ListMessageTemplatesCommandInput,
216
252
  ListMessageTemplatesCommandOutput,
@@ -267,6 +303,10 @@ import {
267
303
  SearchSessionsCommandInput,
268
304
  SearchSessionsCommandOutput,
269
305
  } from "../commands/SearchSessionsCommand";
306
+ import {
307
+ SendMessageCommandInput,
308
+ SendMessageCommandOutput,
309
+ } from "../commands/SendMessageCommand";
270
310
  import {
271
311
  StartContentUploadCommandInput,
272
312
  StartContentUploadCommandOutput,
@@ -287,6 +327,10 @@ import {
287
327
  UpdateAIAgentCommandInput,
288
328
  UpdateAIAgentCommandOutput,
289
329
  } from "../commands/UpdateAIAgentCommand";
330
+ import {
331
+ UpdateAIGuardrailCommandInput,
332
+ UpdateAIGuardrailCommandOutput,
333
+ } from "../commands/UpdateAIGuardrailCommand";
290
334
  import {
291
335
  UpdateAIPromptCommandInput,
292
336
  UpdateAIPromptCommandOutput,
@@ -335,6 +379,14 @@ export declare const se_CreateAIAgentVersionCommand: (
335
379
  input: CreateAIAgentVersionCommandInput,
336
380
  context: __SerdeContext
337
381
  ) => Promise<__HttpRequest>;
382
+ export declare const se_CreateAIGuardrailCommand: (
383
+ input: CreateAIGuardrailCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
386
+ export declare const se_CreateAIGuardrailVersionCommand: (
387
+ input: CreateAIGuardrailVersionCommandInput,
388
+ context: __SerdeContext
389
+ ) => Promise<__HttpRequest>;
338
390
  export declare const se_CreateAIPromptCommand: (
339
391
  input: CreateAIPromptCommandInput,
340
392
  context: __SerdeContext
@@ -395,6 +447,14 @@ export declare const se_DeleteAIAgentVersionCommand: (
395
447
  input: DeleteAIAgentVersionCommandInput,
396
448
  context: __SerdeContext
397
449
  ) => Promise<__HttpRequest>;
450
+ export declare const se_DeleteAIGuardrailCommand: (
451
+ input: DeleteAIGuardrailCommandInput,
452
+ context: __SerdeContext
453
+ ) => Promise<__HttpRequest>;
454
+ export declare const se_DeleteAIGuardrailVersionCommand: (
455
+ input: DeleteAIGuardrailVersionCommandInput,
456
+ context: __SerdeContext
457
+ ) => Promise<__HttpRequest>;
398
458
  export declare const se_DeleteAIPromptCommand: (
399
459
  input: DeleteAIPromptCommandInput,
400
460
  context: __SerdeContext
@@ -443,6 +503,10 @@ export declare const se_GetAIAgentCommand: (
443
503
  input: GetAIAgentCommandInput,
444
504
  context: __SerdeContext
445
505
  ) => Promise<__HttpRequest>;
506
+ export declare const se_GetAIGuardrailCommand: (
507
+ input: GetAIGuardrailCommandInput,
508
+ context: __SerdeContext
509
+ ) => Promise<__HttpRequest>;
446
510
  export declare const se_GetAIPromptCommand: (
447
511
  input: GetAIPromptCommandInput,
448
512
  context: __SerdeContext
@@ -479,6 +543,10 @@ export declare const se_GetMessageTemplateCommand: (
479
543
  input: GetMessageTemplateCommandInput,
480
544
  context: __SerdeContext
481
545
  ) => Promise<__HttpRequest>;
546
+ export declare const se_GetNextMessageCommand: (
547
+ input: GetNextMessageCommandInput,
548
+ context: __SerdeContext
549
+ ) => Promise<__HttpRequest>;
482
550
  export declare const se_GetQuickResponseCommand: (
483
551
  input: GetQuickResponseCommandInput,
484
552
  context: __SerdeContext
@@ -499,6 +567,14 @@ export declare const se_ListAIAgentVersionsCommand: (
499
567
  input: ListAIAgentVersionsCommandInput,
500
568
  context: __SerdeContext
501
569
  ) => Promise<__HttpRequest>;
570
+ export declare const se_ListAIGuardrailsCommand: (
571
+ input: ListAIGuardrailsCommandInput,
572
+ context: __SerdeContext
573
+ ) => Promise<__HttpRequest>;
574
+ export declare const se_ListAIGuardrailVersionsCommand: (
575
+ input: ListAIGuardrailVersionsCommandInput,
576
+ context: __SerdeContext
577
+ ) => Promise<__HttpRequest>;
502
578
  export declare const se_ListAIPromptsCommand: (
503
579
  input: ListAIPromptsCommandInput,
504
580
  context: __SerdeContext
@@ -531,6 +607,10 @@ export declare const se_ListKnowledgeBasesCommand: (
531
607
  input: ListKnowledgeBasesCommandInput,
532
608
  context: __SerdeContext
533
609
  ) => Promise<__HttpRequest>;
610
+ export declare const se_ListMessagesCommand: (
611
+ input: ListMessagesCommandInput,
612
+ context: __SerdeContext
613
+ ) => Promise<__HttpRequest>;
534
614
  export declare const se_ListMessageTemplatesCommand: (
535
615
  input: ListMessageTemplatesCommandInput,
536
616
  context: __SerdeContext
@@ -587,6 +667,10 @@ export declare const se_SearchSessionsCommand: (
587
667
  input: SearchSessionsCommandInput,
588
668
  context: __SerdeContext
589
669
  ) => Promise<__HttpRequest>;
670
+ export declare const se_SendMessageCommand: (
671
+ input: SendMessageCommandInput,
672
+ context: __SerdeContext
673
+ ) => Promise<__HttpRequest>;
590
674
  export declare const se_StartContentUploadCommand: (
591
675
  input: StartContentUploadCommandInput,
592
676
  context: __SerdeContext
@@ -607,6 +691,10 @@ export declare const se_UpdateAIAgentCommand: (
607
691
  input: UpdateAIAgentCommandInput,
608
692
  context: __SerdeContext
609
693
  ) => Promise<__HttpRequest>;
694
+ export declare const se_UpdateAIGuardrailCommand: (
695
+ input: UpdateAIGuardrailCommandInput,
696
+ context: __SerdeContext
697
+ ) => Promise<__HttpRequest>;
610
698
  export declare const se_UpdateAIPromptCommand: (
611
699
  input: UpdateAIPromptCommandInput,
612
700
  context: __SerdeContext
@@ -655,6 +743,14 @@ export declare const de_CreateAIAgentVersionCommand: (
655
743
  output: __HttpResponse,
656
744
  context: __SerdeContext
657
745
  ) => Promise<CreateAIAgentVersionCommandOutput>;
746
+ export declare const de_CreateAIGuardrailCommand: (
747
+ output: __HttpResponse,
748
+ context: __SerdeContext
749
+ ) => Promise<CreateAIGuardrailCommandOutput>;
750
+ export declare const de_CreateAIGuardrailVersionCommand: (
751
+ output: __HttpResponse,
752
+ context: __SerdeContext
753
+ ) => Promise<CreateAIGuardrailVersionCommandOutput>;
658
754
  export declare const de_CreateAIPromptCommand: (
659
755
  output: __HttpResponse,
660
756
  context: __SerdeContext
@@ -715,6 +811,14 @@ export declare const de_DeleteAIAgentVersionCommand: (
715
811
  output: __HttpResponse,
716
812
  context: __SerdeContext
717
813
  ) => Promise<DeleteAIAgentVersionCommandOutput>;
814
+ export declare const de_DeleteAIGuardrailCommand: (
815
+ output: __HttpResponse,
816
+ context: __SerdeContext
817
+ ) => Promise<DeleteAIGuardrailCommandOutput>;
818
+ export declare const de_DeleteAIGuardrailVersionCommand: (
819
+ output: __HttpResponse,
820
+ context: __SerdeContext
821
+ ) => Promise<DeleteAIGuardrailVersionCommandOutput>;
718
822
  export declare const de_DeleteAIPromptCommand: (
719
823
  output: __HttpResponse,
720
824
  context: __SerdeContext
@@ -763,6 +867,10 @@ export declare const de_GetAIAgentCommand: (
763
867
  output: __HttpResponse,
764
868
  context: __SerdeContext
765
869
  ) => Promise<GetAIAgentCommandOutput>;
870
+ export declare const de_GetAIGuardrailCommand: (
871
+ output: __HttpResponse,
872
+ context: __SerdeContext
873
+ ) => Promise<GetAIGuardrailCommandOutput>;
766
874
  export declare const de_GetAIPromptCommand: (
767
875
  output: __HttpResponse,
768
876
  context: __SerdeContext
@@ -799,6 +907,10 @@ export declare const de_GetMessageTemplateCommand: (
799
907
  output: __HttpResponse,
800
908
  context: __SerdeContext
801
909
  ) => Promise<GetMessageTemplateCommandOutput>;
910
+ export declare const de_GetNextMessageCommand: (
911
+ output: __HttpResponse,
912
+ context: __SerdeContext
913
+ ) => Promise<GetNextMessageCommandOutput>;
802
914
  export declare const de_GetQuickResponseCommand: (
803
915
  output: __HttpResponse,
804
916
  context: __SerdeContext
@@ -819,6 +931,14 @@ export declare const de_ListAIAgentVersionsCommand: (
819
931
  output: __HttpResponse,
820
932
  context: __SerdeContext
821
933
  ) => Promise<ListAIAgentVersionsCommandOutput>;
934
+ export declare const de_ListAIGuardrailsCommand: (
935
+ output: __HttpResponse,
936
+ context: __SerdeContext
937
+ ) => Promise<ListAIGuardrailsCommandOutput>;
938
+ export declare const de_ListAIGuardrailVersionsCommand: (
939
+ output: __HttpResponse,
940
+ context: __SerdeContext
941
+ ) => Promise<ListAIGuardrailVersionsCommandOutput>;
822
942
  export declare const de_ListAIPromptsCommand: (
823
943
  output: __HttpResponse,
824
944
  context: __SerdeContext
@@ -851,6 +971,10 @@ export declare const de_ListKnowledgeBasesCommand: (
851
971
  output: __HttpResponse,
852
972
  context: __SerdeContext
853
973
  ) => Promise<ListKnowledgeBasesCommandOutput>;
974
+ export declare const de_ListMessagesCommand: (
975
+ output: __HttpResponse,
976
+ context: __SerdeContext
977
+ ) => Promise<ListMessagesCommandOutput>;
854
978
  export declare const de_ListMessageTemplatesCommand: (
855
979
  output: __HttpResponse,
856
980
  context: __SerdeContext
@@ -907,6 +1031,10 @@ export declare const de_SearchSessionsCommand: (
907
1031
  output: __HttpResponse,
908
1032
  context: __SerdeContext
909
1033
  ) => Promise<SearchSessionsCommandOutput>;
1034
+ export declare const de_SendMessageCommand: (
1035
+ output: __HttpResponse,
1036
+ context: __SerdeContext
1037
+ ) => Promise<SendMessageCommandOutput>;
910
1038
  export declare const de_StartContentUploadCommand: (
911
1039
  output: __HttpResponse,
912
1040
  context: __SerdeContext
@@ -927,6 +1055,10 @@ export declare const de_UpdateAIAgentCommand: (
927
1055
  output: __HttpResponse,
928
1056
  context: __SerdeContext
929
1057
  ) => Promise<UpdateAIAgentCommandOutput>;
1058
+ export declare const de_UpdateAIGuardrailCommand: (
1059
+ output: __HttpResponse,
1060
+ context: __SerdeContext
1061
+ ) => Promise<UpdateAIGuardrailCommandOutput>;
930
1062
  export declare const de_UpdateAIPromptCommand: (
931
1063
  output: __HttpResponse,
932
1064
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-qconnect",
3
3
  "description": "AWS SDK for JavaScript Qconnect Client for Node.js, Browser and React Native",
4
- "version": "3.699.0",
4
+ "version": "3.709.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-qconnect",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.699.0",
24
- "@aws-sdk/client-sts": "3.699.0",
25
- "@aws-sdk/core": "3.696.0",
26
- "@aws-sdk/credential-provider-node": "3.699.0",
27
- "@aws-sdk/middleware-host-header": "3.696.0",
28
- "@aws-sdk/middleware-logger": "3.696.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
- "@aws-sdk/middleware-user-agent": "3.696.0",
31
- "@aws-sdk/region-config-resolver": "3.696.0",
32
- "@aws-sdk/types": "3.696.0",
33
- "@aws-sdk/util-endpoints": "3.696.0",
34
- "@aws-sdk/util-user-agent-browser": "3.696.0",
35
- "@aws-sdk/util-user-agent-node": "3.696.0",
36
- "@smithy/config-resolver": "^3.0.12",
37
- "@smithy/core": "^2.5.3",
38
- "@smithy/fetch-http-handler": "^4.1.1",
39
- "@smithy/hash-node": "^3.0.10",
40
- "@smithy/invalid-dependency": "^3.0.10",
41
- "@smithy/middleware-content-length": "^3.0.12",
42
- "@smithy/middleware-endpoint": "^3.2.3",
43
- "@smithy/middleware-retry": "^3.0.27",
44
- "@smithy/middleware-serde": "^3.0.10",
45
- "@smithy/middleware-stack": "^3.0.10",
46
- "@smithy/node-config-provider": "^3.1.11",
47
- "@smithy/node-http-handler": "^3.3.1",
48
- "@smithy/protocol-http": "^4.1.7",
49
- "@smithy/smithy-client": "^3.4.4",
50
- "@smithy/types": "^3.7.1",
51
- "@smithy/url-parser": "^3.0.10",
23
+ "@aws-sdk/client-sso-oidc": "3.709.0",
24
+ "@aws-sdk/client-sts": "3.709.0",
25
+ "@aws-sdk/core": "3.709.0",
26
+ "@aws-sdk/credential-provider-node": "3.709.0",
27
+ "@aws-sdk/middleware-host-header": "3.709.0",
28
+ "@aws-sdk/middleware-logger": "3.709.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
30
+ "@aws-sdk/middleware-user-agent": "3.709.0",
31
+ "@aws-sdk/region-config-resolver": "3.709.0",
32
+ "@aws-sdk/types": "3.709.0",
33
+ "@aws-sdk/util-endpoints": "3.709.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
35
+ "@aws-sdk/util-user-agent-node": "3.709.0",
36
+ "@smithy/config-resolver": "^3.0.13",
37
+ "@smithy/core": "^2.5.5",
38
+ "@smithy/fetch-http-handler": "^4.1.2",
39
+ "@smithy/hash-node": "^3.0.11",
40
+ "@smithy/invalid-dependency": "^3.0.11",
41
+ "@smithy/middleware-content-length": "^3.0.13",
42
+ "@smithy/middleware-endpoint": "^3.2.5",
43
+ "@smithy/middleware-retry": "^3.0.30",
44
+ "@smithy/middleware-serde": "^3.0.11",
45
+ "@smithy/middleware-stack": "^3.0.11",
46
+ "@smithy/node-config-provider": "^3.1.12",
47
+ "@smithy/node-http-handler": "^3.3.2",
48
+ "@smithy/protocol-http": "^4.1.8",
49
+ "@smithy/smithy-client": "^3.5.0",
50
+ "@smithy/types": "^3.7.2",
51
+ "@smithy/url-parser": "^3.0.11",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.27",
56
- "@smithy/util-defaults-mode-node": "^3.0.27",
57
- "@smithy/util-endpoints": "^2.1.6",
58
- "@smithy/util-middleware": "^3.0.10",
59
- "@smithy/util-retry": "^3.0.10",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
56
+ "@smithy/util-defaults-mode-node": "^3.0.30",
57
+ "@smithy/util-endpoints": "^2.1.7",
58
+ "@smithy/util-middleware": "^3.0.11",
59
+ "@smithy/util-retry": "^3.0.11",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",