@aws-sdk/client-qconnect 3.665.0 → 3.666.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.
- package/README.md +166 -0
- package/dist-cjs/index.js +1501 -102
- package/dist-es/QConnect.js +38 -0
- package/dist-es/commands/CreateAIAgentCommand.js +22 -0
- package/dist-es/commands/CreateAIAgentVersionCommand.js +22 -0
- package/dist-es/commands/CreateAIPromptCommand.js +23 -0
- package/dist-es/commands/CreateAIPromptVersionCommand.js +23 -0
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +2 -1
- package/dist-es/commands/DeleteAIAgentCommand.js +22 -0
- package/dist-es/commands/DeleteAIAgentVersionCommand.js +22 -0
- package/dist-es/commands/DeleteAIPromptCommand.js +22 -0
- package/dist-es/commands/DeleteAIPromptVersionCommand.js +22 -0
- package/dist-es/commands/GetAIAgentCommand.js +22 -0
- package/dist-es/commands/GetAIPromptCommand.js +23 -0
- package/dist-es/commands/GetKnowledgeBaseCommand.js +2 -1
- package/dist-es/commands/ListAIAgentVersionsCommand.js +22 -0
- package/dist-es/commands/ListAIAgentsCommand.js +22 -0
- package/dist-es/commands/ListAIPromptVersionsCommand.js +22 -0
- package/dist-es/commands/ListAIPromptsCommand.js +22 -0
- package/dist-es/commands/ListKnowledgeBasesCommand.js +2 -1
- package/dist-es/commands/RemoveAssistantAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateAIPromptCommand.js +23 -0
- package/dist-es/commands/UpdateAssistantAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -1
- package/dist-es/commands/UpdateSessionDataCommand.js +23 -0
- package/dist-es/commands/index.js +19 -0
- package/dist-es/models/models_0.js +310 -46
- package/dist-es/pagination/ListAIAgentVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAIAgentsPaginator.js +4 -0
- package/dist-es/pagination/ListAIPromptVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAIPromptsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +692 -8
- package/dist-types/QConnect.d.ts +148 -1
- package/dist-types/QConnectClient.d.ts +36 -3
- package/dist-types/commands/CreateAIAgentCommand.d.ts +252 -0
- package/dist-types/commands/CreateAIAgentVersionCommand.d.ts +180 -0
- package/dist-types/commands/CreateAIPromptCommand.d.ts +132 -0
- package/dist-types/commands/CreateAIPromptVersionCommand.d.ts +120 -0
- package/dist-types/commands/CreateAssistantCommand.d.ts +5 -0
- package/dist-types/commands/CreateContentAssociationCommand.d.ts +5 -6
- package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +108 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteAIAgentCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAIAgentVersionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAIPromptCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAIPromptVersionCommand.d.ts +89 -0
- package/dist-types/commands/GetAIAgentCommand.d.ts +168 -0
- package/dist-types/commands/GetAIPromptCommand.d.ts +108 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +5 -0
- package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +56 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +20 -0
- package/dist-types/commands/GetSessionCommand.d.ts +5 -0
- package/dist-types/commands/ListAIAgentVersionsCommand.d.ts +176 -0
- package/dist-types/commands/ListAIAgentsCommand.d.ts +172 -0
- package/dist-types/commands/ListAIPromptVersionsCommand.d.ts +111 -0
- package/dist-types/commands/ListAIPromptsCommand.d.ts +107 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +5 -0
- package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +52 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +30 -1
- package/dist-types/commands/RemoveAssistantAIAgentCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAIAgentCommand.d.ts +244 -0
- package/dist-types/commands/UpdateAIPromptCommand.d.ts +121 -0
- package/dist-types/commands/UpdateAssistantAIAgentCommand.d.ts +112 -0
- package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +56 -0
- package/dist-types/commands/UpdateSessionCommand.d.ts +10 -0
- package/dist-types/commands/UpdateSessionDataCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +19 -0
- package/dist-types/index.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +2454 -275
- package/dist-types/pagination/ListAIAgentVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIAgentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIPromptVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIPromptsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +171 -0
- package/dist-types/ts3.4/QConnect.d.ts +323 -0
- package/dist-types/ts3.4/QConnectClient.d.ts +116 -2
- package/dist-types/ts3.4/commands/CreateAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAIAgentVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAIPromptVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAIAgentVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAIPromptVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAIAgentCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAIPromptCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAIAgentVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAIAgentsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAIPromptVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAIPromptsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RemoveAssistantAIAgentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAssistantAIAgentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSessionDataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +794 -103
- package/dist-types/ts3.4/pagination/ListAIAgentVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIAgentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIPromptVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIPromptsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +228 -0
- package/package.json +12 -12
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAIAgentVersionsCommandInput,
|
|
4
|
+
ListAIAgentVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListAIAgentVersionsCommand";
|
|
6
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAIAgentVersions: (
|
|
8
|
+
config: QConnectPaginationConfiguration,
|
|
9
|
+
input: ListAIAgentVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAIAgentVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAIAgentsCommandInput,
|
|
4
|
+
ListAIAgentsCommandOutput,
|
|
5
|
+
} from "../commands/ListAIAgentsCommand";
|
|
6
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAIAgents: (
|
|
8
|
+
config: QConnectPaginationConfiguration,
|
|
9
|
+
input: ListAIAgentsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAIAgentsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAIPromptVersionsCommandInput,
|
|
4
|
+
ListAIPromptVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListAIPromptVersionsCommand";
|
|
6
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAIPromptVersions: (
|
|
8
|
+
config: QConnectPaginationConfiguration,
|
|
9
|
+
input: ListAIPromptVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAIPromptVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAIPromptsCommandInput,
|
|
4
|
+
ListAIPromptsCommandOutput,
|
|
5
|
+
} from "../commands/ListAIPromptsCommand";
|
|
6
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAIPrompts: (
|
|
8
|
+
config: QConnectPaginationConfiguration,
|
|
9
|
+
input: ListAIPromptsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAIPromptsCommandOutput>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAIAgentVersionsPaginator";
|
|
3
|
+
export * from "./ListAIAgentsPaginator";
|
|
4
|
+
export * from "./ListAIPromptVersionsPaginator";
|
|
5
|
+
export * from "./ListAIPromptsPaginator";
|
|
2
6
|
export * from "./ListAssistantAssociationsPaginator";
|
|
3
7
|
export * from "./ListAssistantsPaginator";
|
|
4
8
|
export * from "./ListContentAssociationsPaginator";
|
|
@@ -3,6 +3,22 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateAIAgentCommandInput,
|
|
8
|
+
CreateAIAgentCommandOutput,
|
|
9
|
+
} from "../commands/CreateAIAgentCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateAIAgentVersionCommandInput,
|
|
12
|
+
CreateAIAgentVersionCommandOutput,
|
|
13
|
+
} from "../commands/CreateAIAgentVersionCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAIPromptCommandInput,
|
|
16
|
+
CreateAIPromptCommandOutput,
|
|
17
|
+
} from "../commands/CreateAIPromptCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateAIPromptVersionCommandInput,
|
|
20
|
+
CreateAIPromptVersionCommandOutput,
|
|
21
|
+
} from "../commands/CreateAIPromptVersionCommand";
|
|
6
22
|
import {
|
|
7
23
|
CreateAssistantAssociationCommandInput,
|
|
8
24
|
CreateAssistantAssociationCommandOutput,
|
|
@@ -31,6 +47,22 @@ import {
|
|
|
31
47
|
CreateSessionCommandInput,
|
|
32
48
|
CreateSessionCommandOutput,
|
|
33
49
|
} from "../commands/CreateSessionCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteAIAgentCommandInput,
|
|
52
|
+
DeleteAIAgentCommandOutput,
|
|
53
|
+
} from "../commands/DeleteAIAgentCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteAIAgentVersionCommandInput,
|
|
56
|
+
DeleteAIAgentVersionCommandOutput,
|
|
57
|
+
} from "../commands/DeleteAIAgentVersionCommand";
|
|
58
|
+
import {
|
|
59
|
+
DeleteAIPromptCommandInput,
|
|
60
|
+
DeleteAIPromptCommandOutput,
|
|
61
|
+
} from "../commands/DeleteAIPromptCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteAIPromptVersionCommandInput,
|
|
64
|
+
DeleteAIPromptVersionCommandOutput,
|
|
65
|
+
} from "../commands/DeleteAIPromptVersionCommand";
|
|
34
66
|
import {
|
|
35
67
|
DeleteAssistantAssociationCommandInput,
|
|
36
68
|
DeleteAssistantAssociationCommandOutput,
|
|
@@ -59,6 +91,14 @@ import {
|
|
|
59
91
|
DeleteQuickResponseCommandInput,
|
|
60
92
|
DeleteQuickResponseCommandOutput,
|
|
61
93
|
} from "../commands/DeleteQuickResponseCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetAIAgentCommandInput,
|
|
96
|
+
GetAIAgentCommandOutput,
|
|
97
|
+
} from "../commands/GetAIAgentCommand";
|
|
98
|
+
import {
|
|
99
|
+
GetAIPromptCommandInput,
|
|
100
|
+
GetAIPromptCommandOutput,
|
|
101
|
+
} from "../commands/GetAIPromptCommand";
|
|
62
102
|
import {
|
|
63
103
|
GetAssistantAssociationCommandInput,
|
|
64
104
|
GetAssistantAssociationCommandOutput,
|
|
@@ -99,6 +139,22 @@ import {
|
|
|
99
139
|
GetSessionCommandInput,
|
|
100
140
|
GetSessionCommandOutput,
|
|
101
141
|
} from "../commands/GetSessionCommand";
|
|
142
|
+
import {
|
|
143
|
+
ListAIAgentsCommandInput,
|
|
144
|
+
ListAIAgentsCommandOutput,
|
|
145
|
+
} from "../commands/ListAIAgentsCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListAIAgentVersionsCommandInput,
|
|
148
|
+
ListAIAgentVersionsCommandOutput,
|
|
149
|
+
} from "../commands/ListAIAgentVersionsCommand";
|
|
150
|
+
import {
|
|
151
|
+
ListAIPromptsCommandInput,
|
|
152
|
+
ListAIPromptsCommandOutput,
|
|
153
|
+
} from "../commands/ListAIPromptsCommand";
|
|
154
|
+
import {
|
|
155
|
+
ListAIPromptVersionsCommandInput,
|
|
156
|
+
ListAIPromptVersionsCommandOutput,
|
|
157
|
+
} from "../commands/ListAIPromptVersionsCommand";
|
|
102
158
|
import {
|
|
103
159
|
ListAssistantAssociationsCommandInput,
|
|
104
160
|
ListAssistantAssociationsCommandOutput,
|
|
@@ -143,6 +199,10 @@ import {
|
|
|
143
199
|
QueryAssistantCommandInput,
|
|
144
200
|
QueryAssistantCommandOutput,
|
|
145
201
|
} from "../commands/QueryAssistantCommand";
|
|
202
|
+
import {
|
|
203
|
+
RemoveAssistantAIAgentCommandInput,
|
|
204
|
+
RemoveAssistantAIAgentCommandOutput,
|
|
205
|
+
} from "../commands/RemoveAssistantAIAgentCommand";
|
|
146
206
|
import {
|
|
147
207
|
RemoveKnowledgeBaseTemplateUriCommandInput,
|
|
148
208
|
RemoveKnowledgeBaseTemplateUriCommandOutput,
|
|
@@ -175,6 +235,18 @@ import {
|
|
|
175
235
|
UntagResourceCommandInput,
|
|
176
236
|
UntagResourceCommandOutput,
|
|
177
237
|
} from "../commands/UntagResourceCommand";
|
|
238
|
+
import {
|
|
239
|
+
UpdateAIAgentCommandInput,
|
|
240
|
+
UpdateAIAgentCommandOutput,
|
|
241
|
+
} from "../commands/UpdateAIAgentCommand";
|
|
242
|
+
import {
|
|
243
|
+
UpdateAIPromptCommandInput,
|
|
244
|
+
UpdateAIPromptCommandOutput,
|
|
245
|
+
} from "../commands/UpdateAIPromptCommand";
|
|
246
|
+
import {
|
|
247
|
+
UpdateAssistantAIAgentCommandInput,
|
|
248
|
+
UpdateAssistantAIAgentCommandOutput,
|
|
249
|
+
} from "../commands/UpdateAssistantAIAgentCommand";
|
|
178
250
|
import {
|
|
179
251
|
UpdateContentCommandInput,
|
|
180
252
|
UpdateContentCommandOutput,
|
|
@@ -191,6 +263,26 @@ import {
|
|
|
191
263
|
UpdateSessionCommandInput,
|
|
192
264
|
UpdateSessionCommandOutput,
|
|
193
265
|
} from "../commands/UpdateSessionCommand";
|
|
266
|
+
import {
|
|
267
|
+
UpdateSessionDataCommandInput,
|
|
268
|
+
UpdateSessionDataCommandOutput,
|
|
269
|
+
} from "../commands/UpdateSessionDataCommand";
|
|
270
|
+
export declare const se_CreateAIAgentCommand: (
|
|
271
|
+
input: CreateAIAgentCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_CreateAIAgentVersionCommand: (
|
|
275
|
+
input: CreateAIAgentVersionCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const se_CreateAIPromptCommand: (
|
|
279
|
+
input: CreateAIPromptCommandInput,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const se_CreateAIPromptVersionCommand: (
|
|
283
|
+
input: CreateAIPromptVersionCommandInput,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<__HttpRequest>;
|
|
194
286
|
export declare const se_CreateAssistantCommand: (
|
|
195
287
|
input: CreateAssistantCommandInput,
|
|
196
288
|
context: __SerdeContext
|
|
@@ -219,6 +311,22 @@ export declare const se_CreateSessionCommand: (
|
|
|
219
311
|
input: CreateSessionCommandInput,
|
|
220
312
|
context: __SerdeContext
|
|
221
313
|
) => Promise<__HttpRequest>;
|
|
314
|
+
export declare const se_DeleteAIAgentCommand: (
|
|
315
|
+
input: DeleteAIAgentCommandInput,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<__HttpRequest>;
|
|
318
|
+
export declare const se_DeleteAIAgentVersionCommand: (
|
|
319
|
+
input: DeleteAIAgentVersionCommandInput,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<__HttpRequest>;
|
|
322
|
+
export declare const se_DeleteAIPromptCommand: (
|
|
323
|
+
input: DeleteAIPromptCommandInput,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<__HttpRequest>;
|
|
326
|
+
export declare const se_DeleteAIPromptVersionCommand: (
|
|
327
|
+
input: DeleteAIPromptVersionCommandInput,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<__HttpRequest>;
|
|
222
330
|
export declare const se_DeleteAssistantCommand: (
|
|
223
331
|
input: DeleteAssistantCommandInput,
|
|
224
332
|
context: __SerdeContext
|
|
@@ -247,6 +355,14 @@ export declare const se_DeleteQuickResponseCommand: (
|
|
|
247
355
|
input: DeleteQuickResponseCommandInput,
|
|
248
356
|
context: __SerdeContext
|
|
249
357
|
) => Promise<__HttpRequest>;
|
|
358
|
+
export declare const se_GetAIAgentCommand: (
|
|
359
|
+
input: GetAIAgentCommandInput,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<__HttpRequest>;
|
|
362
|
+
export declare const se_GetAIPromptCommand: (
|
|
363
|
+
input: GetAIPromptCommandInput,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<__HttpRequest>;
|
|
250
366
|
export declare const se_GetAssistantCommand: (
|
|
251
367
|
input: GetAssistantCommandInput,
|
|
252
368
|
context: __SerdeContext
|
|
@@ -287,6 +403,22 @@ export declare const se_GetSessionCommand: (
|
|
|
287
403
|
input: GetSessionCommandInput,
|
|
288
404
|
context: __SerdeContext
|
|
289
405
|
) => Promise<__HttpRequest>;
|
|
406
|
+
export declare const se_ListAIAgentsCommand: (
|
|
407
|
+
input: ListAIAgentsCommandInput,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<__HttpRequest>;
|
|
410
|
+
export declare const se_ListAIAgentVersionsCommand: (
|
|
411
|
+
input: ListAIAgentVersionsCommandInput,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<__HttpRequest>;
|
|
414
|
+
export declare const se_ListAIPromptsCommand: (
|
|
415
|
+
input: ListAIPromptsCommandInput,
|
|
416
|
+
context: __SerdeContext
|
|
417
|
+
) => Promise<__HttpRequest>;
|
|
418
|
+
export declare const se_ListAIPromptVersionsCommand: (
|
|
419
|
+
input: ListAIPromptVersionsCommandInput,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<__HttpRequest>;
|
|
290
422
|
export declare const se_ListAssistantAssociationsCommand: (
|
|
291
423
|
input: ListAssistantAssociationsCommandInput,
|
|
292
424
|
context: __SerdeContext
|
|
@@ -331,6 +463,10 @@ export declare const se_QueryAssistantCommand: (
|
|
|
331
463
|
input: QueryAssistantCommandInput,
|
|
332
464
|
context: __SerdeContext
|
|
333
465
|
) => Promise<__HttpRequest>;
|
|
466
|
+
export declare const se_RemoveAssistantAIAgentCommand: (
|
|
467
|
+
input: RemoveAssistantAIAgentCommandInput,
|
|
468
|
+
context: __SerdeContext
|
|
469
|
+
) => Promise<__HttpRequest>;
|
|
334
470
|
export declare const se_RemoveKnowledgeBaseTemplateUriCommand: (
|
|
335
471
|
input: RemoveKnowledgeBaseTemplateUriCommandInput,
|
|
336
472
|
context: __SerdeContext
|
|
@@ -363,6 +499,18 @@ export declare const se_UntagResourceCommand: (
|
|
|
363
499
|
input: UntagResourceCommandInput,
|
|
364
500
|
context: __SerdeContext
|
|
365
501
|
) => Promise<__HttpRequest>;
|
|
502
|
+
export declare const se_UpdateAIAgentCommand: (
|
|
503
|
+
input: UpdateAIAgentCommandInput,
|
|
504
|
+
context: __SerdeContext
|
|
505
|
+
) => Promise<__HttpRequest>;
|
|
506
|
+
export declare const se_UpdateAIPromptCommand: (
|
|
507
|
+
input: UpdateAIPromptCommandInput,
|
|
508
|
+
context: __SerdeContext
|
|
509
|
+
) => Promise<__HttpRequest>;
|
|
510
|
+
export declare const se_UpdateAssistantAIAgentCommand: (
|
|
511
|
+
input: UpdateAssistantAIAgentCommandInput,
|
|
512
|
+
context: __SerdeContext
|
|
513
|
+
) => Promise<__HttpRequest>;
|
|
366
514
|
export declare const se_UpdateContentCommand: (
|
|
367
515
|
input: UpdateContentCommandInput,
|
|
368
516
|
context: __SerdeContext
|
|
@@ -379,6 +527,26 @@ export declare const se_UpdateSessionCommand: (
|
|
|
379
527
|
input: UpdateSessionCommandInput,
|
|
380
528
|
context: __SerdeContext
|
|
381
529
|
) => Promise<__HttpRequest>;
|
|
530
|
+
export declare const se_UpdateSessionDataCommand: (
|
|
531
|
+
input: UpdateSessionDataCommandInput,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<__HttpRequest>;
|
|
534
|
+
export declare const de_CreateAIAgentCommand: (
|
|
535
|
+
output: __HttpResponse,
|
|
536
|
+
context: __SerdeContext
|
|
537
|
+
) => Promise<CreateAIAgentCommandOutput>;
|
|
538
|
+
export declare const de_CreateAIAgentVersionCommand: (
|
|
539
|
+
output: __HttpResponse,
|
|
540
|
+
context: __SerdeContext
|
|
541
|
+
) => Promise<CreateAIAgentVersionCommandOutput>;
|
|
542
|
+
export declare const de_CreateAIPromptCommand: (
|
|
543
|
+
output: __HttpResponse,
|
|
544
|
+
context: __SerdeContext
|
|
545
|
+
) => Promise<CreateAIPromptCommandOutput>;
|
|
546
|
+
export declare const de_CreateAIPromptVersionCommand: (
|
|
547
|
+
output: __HttpResponse,
|
|
548
|
+
context: __SerdeContext
|
|
549
|
+
) => Promise<CreateAIPromptVersionCommandOutput>;
|
|
382
550
|
export declare const de_CreateAssistantCommand: (
|
|
383
551
|
output: __HttpResponse,
|
|
384
552
|
context: __SerdeContext
|
|
@@ -407,6 +575,22 @@ export declare const de_CreateSessionCommand: (
|
|
|
407
575
|
output: __HttpResponse,
|
|
408
576
|
context: __SerdeContext
|
|
409
577
|
) => Promise<CreateSessionCommandOutput>;
|
|
578
|
+
export declare const de_DeleteAIAgentCommand: (
|
|
579
|
+
output: __HttpResponse,
|
|
580
|
+
context: __SerdeContext
|
|
581
|
+
) => Promise<DeleteAIAgentCommandOutput>;
|
|
582
|
+
export declare const de_DeleteAIAgentVersionCommand: (
|
|
583
|
+
output: __HttpResponse,
|
|
584
|
+
context: __SerdeContext
|
|
585
|
+
) => Promise<DeleteAIAgentVersionCommandOutput>;
|
|
586
|
+
export declare const de_DeleteAIPromptCommand: (
|
|
587
|
+
output: __HttpResponse,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<DeleteAIPromptCommandOutput>;
|
|
590
|
+
export declare const de_DeleteAIPromptVersionCommand: (
|
|
591
|
+
output: __HttpResponse,
|
|
592
|
+
context: __SerdeContext
|
|
593
|
+
) => Promise<DeleteAIPromptVersionCommandOutput>;
|
|
410
594
|
export declare const de_DeleteAssistantCommand: (
|
|
411
595
|
output: __HttpResponse,
|
|
412
596
|
context: __SerdeContext
|
|
@@ -435,6 +619,14 @@ export declare const de_DeleteQuickResponseCommand: (
|
|
|
435
619
|
output: __HttpResponse,
|
|
436
620
|
context: __SerdeContext
|
|
437
621
|
) => Promise<DeleteQuickResponseCommandOutput>;
|
|
622
|
+
export declare const de_GetAIAgentCommand: (
|
|
623
|
+
output: __HttpResponse,
|
|
624
|
+
context: __SerdeContext
|
|
625
|
+
) => Promise<GetAIAgentCommandOutput>;
|
|
626
|
+
export declare const de_GetAIPromptCommand: (
|
|
627
|
+
output: __HttpResponse,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<GetAIPromptCommandOutput>;
|
|
438
630
|
export declare const de_GetAssistantCommand: (
|
|
439
631
|
output: __HttpResponse,
|
|
440
632
|
context: __SerdeContext
|
|
@@ -475,6 +667,22 @@ export declare const de_GetSessionCommand: (
|
|
|
475
667
|
output: __HttpResponse,
|
|
476
668
|
context: __SerdeContext
|
|
477
669
|
) => Promise<GetSessionCommandOutput>;
|
|
670
|
+
export declare const de_ListAIAgentsCommand: (
|
|
671
|
+
output: __HttpResponse,
|
|
672
|
+
context: __SerdeContext
|
|
673
|
+
) => Promise<ListAIAgentsCommandOutput>;
|
|
674
|
+
export declare const de_ListAIAgentVersionsCommand: (
|
|
675
|
+
output: __HttpResponse,
|
|
676
|
+
context: __SerdeContext
|
|
677
|
+
) => Promise<ListAIAgentVersionsCommandOutput>;
|
|
678
|
+
export declare const de_ListAIPromptsCommand: (
|
|
679
|
+
output: __HttpResponse,
|
|
680
|
+
context: __SerdeContext
|
|
681
|
+
) => Promise<ListAIPromptsCommandOutput>;
|
|
682
|
+
export declare const de_ListAIPromptVersionsCommand: (
|
|
683
|
+
output: __HttpResponse,
|
|
684
|
+
context: __SerdeContext
|
|
685
|
+
) => Promise<ListAIPromptVersionsCommandOutput>;
|
|
478
686
|
export declare const de_ListAssistantAssociationsCommand: (
|
|
479
687
|
output: __HttpResponse,
|
|
480
688
|
context: __SerdeContext
|
|
@@ -519,6 +727,10 @@ export declare const de_QueryAssistantCommand: (
|
|
|
519
727
|
output: __HttpResponse,
|
|
520
728
|
context: __SerdeContext
|
|
521
729
|
) => Promise<QueryAssistantCommandOutput>;
|
|
730
|
+
export declare const de_RemoveAssistantAIAgentCommand: (
|
|
731
|
+
output: __HttpResponse,
|
|
732
|
+
context: __SerdeContext
|
|
733
|
+
) => Promise<RemoveAssistantAIAgentCommandOutput>;
|
|
522
734
|
export declare const de_RemoveKnowledgeBaseTemplateUriCommand: (
|
|
523
735
|
output: __HttpResponse,
|
|
524
736
|
context: __SerdeContext
|
|
@@ -551,6 +763,18 @@ export declare const de_UntagResourceCommand: (
|
|
|
551
763
|
output: __HttpResponse,
|
|
552
764
|
context: __SerdeContext
|
|
553
765
|
) => Promise<UntagResourceCommandOutput>;
|
|
766
|
+
export declare const de_UpdateAIAgentCommand: (
|
|
767
|
+
output: __HttpResponse,
|
|
768
|
+
context: __SerdeContext
|
|
769
|
+
) => Promise<UpdateAIAgentCommandOutput>;
|
|
770
|
+
export declare const de_UpdateAIPromptCommand: (
|
|
771
|
+
output: __HttpResponse,
|
|
772
|
+
context: __SerdeContext
|
|
773
|
+
) => Promise<UpdateAIPromptCommandOutput>;
|
|
774
|
+
export declare const de_UpdateAssistantAIAgentCommand: (
|
|
775
|
+
output: __HttpResponse,
|
|
776
|
+
context: __SerdeContext
|
|
777
|
+
) => Promise<UpdateAssistantAIAgentCommandOutput>;
|
|
554
778
|
export declare const de_UpdateContentCommand: (
|
|
555
779
|
output: __HttpResponse,
|
|
556
780
|
context: __SerdeContext
|
|
@@ -567,3 +791,7 @@ export declare const de_UpdateSessionCommand: (
|
|
|
567
791
|
output: __HttpResponse,
|
|
568
792
|
context: __SerdeContext
|
|
569
793
|
) => Promise<UpdateSessionCommandOutput>;
|
|
794
|
+
export declare const de_UpdateSessionDataCommand: (
|
|
795
|
+
output: __HttpResponse,
|
|
796
|
+
context: __SerdeContext
|
|
797
|
+
) => Promise<UpdateSessionDataCommandOutput>;
|
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.
|
|
4
|
+
"version": "3.666.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,40 +20,40 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.666.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.666.0",
|
|
25
|
+
"@aws-sdk/core": "3.666.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.666.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.664.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.664.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.664.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.666.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.664.0",
|
|
32
32
|
"@aws-sdk/types": "3.664.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.664.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.664.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.666.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
37
|
+
"@smithy/core": "^2.4.8",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|
|
39
39
|
"@smithy/hash-node": "^3.0.7",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.7",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.9",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.1.4",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.23",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.7",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.7",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.8",
|
|
47
47
|
"@smithy/node-http-handler": "^3.2.4",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.4",
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
49
|
+
"@smithy/smithy-client": "^3.4.0",
|
|
50
50
|
"@smithy/types": "^3.5.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.7",
|
|
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.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.23",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.23",
|
|
57
57
|
"@smithy/util-endpoints": "^2.1.3",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.7",
|
|
59
59
|
"@smithy/util-retry": "^3.0.7",
|