@aws-sdk/client-wisdom 3.451.0 → 3.454.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 +80 -0
- package/dist-cjs/Wisdom.js +20 -0
- package/dist-cjs/commands/CreateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/DeleteImportJobCommand.js +51 -0
- package/dist-cjs/commands/DeleteQuickResponseCommand.js +51 -0
- package/dist-cjs/commands/GetImportJobCommand.js +52 -0
- package/dist-cjs/commands/GetQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/ListImportJobsCommand.js +51 -0
- package/dist-cjs/commands/ListQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/SearchQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/StartImportJobCommand.js +52 -0
- package/dist-cjs/commands/UpdateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +200 -1
- package/dist-cjs/pagination/ListImportJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +816 -18
- package/dist-es/Wisdom.js +20 -0
- package/dist-es/commands/CreateQuickResponseCommand.js +48 -0
- package/dist-es/commands/DeleteImportJobCommand.js +47 -0
- package/dist-es/commands/DeleteQuickResponseCommand.js +47 -0
- package/dist-es/commands/GetImportJobCommand.js +48 -0
- package/dist-es/commands/GetQuickResponseCommand.js +48 -0
- package/dist-es/commands/ListImportJobsCommand.js +47 -0
- package/dist-es/commands/ListQuickResponsesCommand.js +48 -0
- package/dist-es/commands/SearchQuickResponsesCommand.js +48 -0
- package/dist-es/commands/StartImportJobCommand.js +48 -0
- package/dist-es/commands/UpdateQuickResponseCommand.js +48 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +179 -0
- package/dist-es/pagination/ListImportJobsPaginator.js +25 -0
- package/dist-es/pagination/ListQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +794 -16
- package/dist-types/Wisdom.d.ts +70 -0
- package/dist-types/WisdomClient.d.ts +12 -2
- package/dist-types/commands/CreateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/DeleteImportJobCommand.d.ts +87 -0
- package/dist-types/commands/DeleteQuickResponseCommand.d.ts +81 -0
- package/dist-types/commands/GetImportJobCommand.d.ts +106 -0
- package/dist-types/commands/GetQuickResponseCommand.d.ts +118 -0
- package/dist-types/commands/ListImportJobsCommand.d.ts +104 -0
- package/dist-types/commands/ListQuickResponsesCommand.d.ts +106 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +5 -0
- package/dist-types/commands/SearchQuickResponsesCommand.d.ts +163 -0
- package/dist-types/commands/StartContentUploadCommand.d.ts +1 -0
- package/dist-types/commands/StartImportJobCommand.d.ts +135 -0
- package/dist-types/commands/UpdateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1631 -167
- package/dist-types/pagination/ListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Wisdom.d.ts +170 -0
- package/dist-types/ts3.4/WisdomClient.d.ts +62 -2
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +397 -0
- package/dist-types/ts3.4/pagination/ListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +2 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
|
|
3
|
+
import { WisdomPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListImportJobs(config: WisdomPaginationConfiguration, input: ListImportJobsCommandInput, ...additionalArguments: any): Paginator<ListImportJobsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListQuickResponsesCommandInput, ListQuickResponsesCommandOutput } from "../commands/ListQuickResponsesCommand";
|
|
3
|
+
import { WisdomPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListQuickResponses(config: WisdomPaginationConfiguration, input: ListQuickResponsesCommandInput, ...additionalArguments: any): Paginator<ListQuickResponsesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchQuickResponsesCommandInput, SearchQuickResponsesCommandOutput } from "../commands/SearchQuickResponsesCommand";
|
|
3
|
+
import { WisdomPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchQuickResponses(config: WisdomPaginationConfiguration, input: SearchQuickResponsesCommandInput, ...additionalArguments: any): Paginator<SearchQuickResponsesCommandOutput>;
|
|
@@ -2,7 +2,10 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListAssistantAssociationsPaginator";
|
|
3
3
|
export * from "./ListAssistantsPaginator";
|
|
4
4
|
export * from "./ListContentsPaginator";
|
|
5
|
+
export * from "./ListImportJobsPaginator";
|
|
5
6
|
export * from "./ListKnowledgeBasesPaginator";
|
|
7
|
+
export * from "./ListQuickResponsesPaginator";
|
|
6
8
|
export * from "./QueryAssistantPaginator";
|
|
7
9
|
export * from "./SearchContentPaginator";
|
|
10
|
+
export * from "./SearchQuickResponsesPaginator";
|
|
8
11
|
export * from "./SearchSessionsPaginator";
|
|
@@ -4,33 +4,43 @@ import { CreateAssistantAssociationCommandInput, CreateAssistantAssociationComma
|
|
|
4
4
|
import { CreateAssistantCommandInput, CreateAssistantCommandOutput } from "../commands/CreateAssistantCommand";
|
|
5
5
|
import { CreateContentCommandInput, CreateContentCommandOutput } from "../commands/CreateContentCommand";
|
|
6
6
|
import { CreateKnowledgeBaseCommandInput, CreateKnowledgeBaseCommandOutput } from "../commands/CreateKnowledgeBaseCommand";
|
|
7
|
+
import { CreateQuickResponseCommandInput, CreateQuickResponseCommandOutput } from "../commands/CreateQuickResponseCommand";
|
|
7
8
|
import { CreateSessionCommandInput, CreateSessionCommandOutput } from "../commands/CreateSessionCommand";
|
|
8
9
|
import { DeleteAssistantAssociationCommandInput, DeleteAssistantAssociationCommandOutput } from "../commands/DeleteAssistantAssociationCommand";
|
|
9
10
|
import { DeleteAssistantCommandInput, DeleteAssistantCommandOutput } from "../commands/DeleteAssistantCommand";
|
|
10
11
|
import { DeleteContentCommandInput, DeleteContentCommandOutput } from "../commands/DeleteContentCommand";
|
|
12
|
+
import { DeleteImportJobCommandInput, DeleteImportJobCommandOutput } from "../commands/DeleteImportJobCommand";
|
|
11
13
|
import { DeleteKnowledgeBaseCommandInput, DeleteKnowledgeBaseCommandOutput } from "../commands/DeleteKnowledgeBaseCommand";
|
|
14
|
+
import { DeleteQuickResponseCommandInput, DeleteQuickResponseCommandOutput } from "../commands/DeleteQuickResponseCommand";
|
|
12
15
|
import { GetAssistantAssociationCommandInput, GetAssistantAssociationCommandOutput } from "../commands/GetAssistantAssociationCommand";
|
|
13
16
|
import { GetAssistantCommandInput, GetAssistantCommandOutput } from "../commands/GetAssistantCommand";
|
|
14
17
|
import { GetContentCommandInput, GetContentCommandOutput } from "../commands/GetContentCommand";
|
|
15
18
|
import { GetContentSummaryCommandInput, GetContentSummaryCommandOutput } from "../commands/GetContentSummaryCommand";
|
|
19
|
+
import { GetImportJobCommandInput, GetImportJobCommandOutput } from "../commands/GetImportJobCommand";
|
|
16
20
|
import { GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput } from "../commands/GetKnowledgeBaseCommand";
|
|
21
|
+
import { GetQuickResponseCommandInput, GetQuickResponseCommandOutput } from "../commands/GetQuickResponseCommand";
|
|
17
22
|
import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "../commands/GetRecommendationsCommand";
|
|
18
23
|
import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
|
|
19
24
|
import { ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput } from "../commands/ListAssistantAssociationsCommand";
|
|
20
25
|
import { ListAssistantsCommandInput, ListAssistantsCommandOutput } from "../commands/ListAssistantsCommand";
|
|
21
26
|
import { ListContentsCommandInput, ListContentsCommandOutput } from "../commands/ListContentsCommand";
|
|
27
|
+
import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
|
|
22
28
|
import { ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput } from "../commands/ListKnowledgeBasesCommand";
|
|
29
|
+
import { ListQuickResponsesCommandInput, ListQuickResponsesCommandOutput } from "../commands/ListQuickResponsesCommand";
|
|
23
30
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
24
31
|
import { NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput } from "../commands/NotifyRecommendationsReceivedCommand";
|
|
25
32
|
import { QueryAssistantCommandInput, QueryAssistantCommandOutput } from "../commands/QueryAssistantCommand";
|
|
26
33
|
import { RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput } from "../commands/RemoveKnowledgeBaseTemplateUriCommand";
|
|
27
34
|
import { SearchContentCommandInput, SearchContentCommandOutput } from "../commands/SearchContentCommand";
|
|
35
|
+
import { SearchQuickResponsesCommandInput, SearchQuickResponsesCommandOutput } from "../commands/SearchQuickResponsesCommand";
|
|
28
36
|
import { SearchSessionsCommandInput, SearchSessionsCommandOutput } from "../commands/SearchSessionsCommand";
|
|
29
37
|
import { StartContentUploadCommandInput, StartContentUploadCommandOutput } from "../commands/StartContentUploadCommand";
|
|
38
|
+
import { StartImportJobCommandInput, StartImportJobCommandOutput } from "../commands/StartImportJobCommand";
|
|
30
39
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
31
40
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
32
41
|
import { UpdateContentCommandInput, UpdateContentCommandOutput } from "../commands/UpdateContentCommand";
|
|
33
42
|
import { UpdateKnowledgeBaseTemplateUriCommandInput, UpdateKnowledgeBaseTemplateUriCommandOutput } from "../commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
43
|
+
import { UpdateQuickResponseCommandInput, UpdateQuickResponseCommandOutput } from "../commands/UpdateQuickResponseCommand";
|
|
34
44
|
/**
|
|
35
45
|
* serializeAws_restJson1CreateAssistantCommand
|
|
36
46
|
*/
|
|
@@ -47,6 +57,10 @@ export declare const se_CreateContentCommand: (input: CreateContentCommandInput,
|
|
|
47
57
|
* serializeAws_restJson1CreateKnowledgeBaseCommand
|
|
48
58
|
*/
|
|
49
59
|
export declare const se_CreateKnowledgeBaseCommand: (input: CreateKnowledgeBaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
/**
|
|
61
|
+
* serializeAws_restJson1CreateQuickResponseCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const se_CreateQuickResponseCommand: (input: CreateQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
64
|
/**
|
|
51
65
|
* serializeAws_restJson1CreateSessionCommand
|
|
52
66
|
*/
|
|
@@ -63,10 +77,18 @@ export declare const se_DeleteAssistantAssociationCommand: (input: DeleteAssista
|
|
|
63
77
|
* serializeAws_restJson1DeleteContentCommand
|
|
64
78
|
*/
|
|
65
79
|
export declare const se_DeleteContentCommand: (input: DeleteContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
+
/**
|
|
81
|
+
* serializeAws_restJson1DeleteImportJobCommand
|
|
82
|
+
*/
|
|
83
|
+
export declare const se_DeleteImportJobCommand: (input: DeleteImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
84
|
/**
|
|
67
85
|
* serializeAws_restJson1DeleteKnowledgeBaseCommand
|
|
68
86
|
*/
|
|
69
87
|
export declare const se_DeleteKnowledgeBaseCommand: (input: DeleteKnowledgeBaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
/**
|
|
89
|
+
* serializeAws_restJson1DeleteQuickResponseCommand
|
|
90
|
+
*/
|
|
91
|
+
export declare const se_DeleteQuickResponseCommand: (input: DeleteQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
92
|
/**
|
|
71
93
|
* serializeAws_restJson1GetAssistantCommand
|
|
72
94
|
*/
|
|
@@ -83,10 +105,18 @@ export declare const se_GetContentCommand: (input: GetContentCommandInput, conte
|
|
|
83
105
|
* serializeAws_restJson1GetContentSummaryCommand
|
|
84
106
|
*/
|
|
85
107
|
export declare const se_GetContentSummaryCommand: (input: GetContentSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1GetImportJobCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_GetImportJobCommand: (input: GetImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
112
|
/**
|
|
87
113
|
* serializeAws_restJson1GetKnowledgeBaseCommand
|
|
88
114
|
*/
|
|
89
115
|
export declare const se_GetKnowledgeBaseCommand: (input: GetKnowledgeBaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1GetQuickResponseCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_GetQuickResponseCommand: (input: GetQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
120
|
/**
|
|
91
121
|
* serializeAws_restJson1GetRecommendationsCommand
|
|
92
122
|
*/
|
|
@@ -107,10 +137,18 @@ export declare const se_ListAssistantsCommand: (input: ListAssistantsCommandInpu
|
|
|
107
137
|
* serializeAws_restJson1ListContentsCommand
|
|
108
138
|
*/
|
|
109
139
|
export declare const se_ListContentsCommand: (input: ListContentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
/**
|
|
141
|
+
* serializeAws_restJson1ListImportJobsCommand
|
|
142
|
+
*/
|
|
143
|
+
export declare const se_ListImportJobsCommand: (input: ListImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
144
|
/**
|
|
111
145
|
* serializeAws_restJson1ListKnowledgeBasesCommand
|
|
112
146
|
*/
|
|
113
147
|
export declare const se_ListKnowledgeBasesCommand: (input: ListKnowledgeBasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
|
+
/**
|
|
149
|
+
* serializeAws_restJson1ListQuickResponsesCommand
|
|
150
|
+
*/
|
|
151
|
+
export declare const se_ListQuickResponsesCommand: (input: ListQuickResponsesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
152
|
/**
|
|
115
153
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
116
154
|
*/
|
|
@@ -131,6 +169,10 @@ export declare const se_RemoveKnowledgeBaseTemplateUriCommand: (input: RemoveKno
|
|
|
131
169
|
* serializeAws_restJson1SearchContentCommand
|
|
132
170
|
*/
|
|
133
171
|
export declare const se_SearchContentCommand: (input: SearchContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
172
|
+
/**
|
|
173
|
+
* serializeAws_restJson1SearchQuickResponsesCommand
|
|
174
|
+
*/
|
|
175
|
+
export declare const se_SearchQuickResponsesCommand: (input: SearchQuickResponsesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
176
|
/**
|
|
135
177
|
* serializeAws_restJson1SearchSessionsCommand
|
|
136
178
|
*/
|
|
@@ -139,6 +181,10 @@ export declare const se_SearchSessionsCommand: (input: SearchSessionsCommandInpu
|
|
|
139
181
|
* serializeAws_restJson1StartContentUploadCommand
|
|
140
182
|
*/
|
|
141
183
|
export declare const se_StartContentUploadCommand: (input: StartContentUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
184
|
+
/**
|
|
185
|
+
* serializeAws_restJson1StartImportJobCommand
|
|
186
|
+
*/
|
|
187
|
+
export declare const se_StartImportJobCommand: (input: StartImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
188
|
/**
|
|
143
189
|
* serializeAws_restJson1TagResourceCommand
|
|
144
190
|
*/
|
|
@@ -155,6 +201,10 @@ export declare const se_UpdateContentCommand: (input: UpdateContentCommandInput,
|
|
|
155
201
|
* serializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand
|
|
156
202
|
*/
|
|
157
203
|
export declare const se_UpdateKnowledgeBaseTemplateUriCommand: (input: UpdateKnowledgeBaseTemplateUriCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
204
|
+
/**
|
|
205
|
+
* serializeAws_restJson1UpdateQuickResponseCommand
|
|
206
|
+
*/
|
|
207
|
+
export declare const se_UpdateQuickResponseCommand: (input: UpdateQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
158
208
|
/**
|
|
159
209
|
* deserializeAws_restJson1CreateAssistantCommand
|
|
160
210
|
*/
|
|
@@ -171,6 +221,10 @@ export declare const de_CreateContentCommand: (output: __HttpResponse, context:
|
|
|
171
221
|
* deserializeAws_restJson1CreateKnowledgeBaseCommand
|
|
172
222
|
*/
|
|
173
223
|
export declare const de_CreateKnowledgeBaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKnowledgeBaseCommandOutput>;
|
|
224
|
+
/**
|
|
225
|
+
* deserializeAws_restJson1CreateQuickResponseCommand
|
|
226
|
+
*/
|
|
227
|
+
export declare const de_CreateQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuickResponseCommandOutput>;
|
|
174
228
|
/**
|
|
175
229
|
* deserializeAws_restJson1CreateSessionCommand
|
|
176
230
|
*/
|
|
@@ -187,10 +241,18 @@ export declare const de_DeleteAssistantAssociationCommand: (output: __HttpRespon
|
|
|
187
241
|
* deserializeAws_restJson1DeleteContentCommand
|
|
188
242
|
*/
|
|
189
243
|
export declare const de_DeleteContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContentCommandOutput>;
|
|
244
|
+
/**
|
|
245
|
+
* deserializeAws_restJson1DeleteImportJobCommand
|
|
246
|
+
*/
|
|
247
|
+
export declare const de_DeleteImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteImportJobCommandOutput>;
|
|
190
248
|
/**
|
|
191
249
|
* deserializeAws_restJson1DeleteKnowledgeBaseCommand
|
|
192
250
|
*/
|
|
193
251
|
export declare const de_DeleteKnowledgeBaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKnowledgeBaseCommandOutput>;
|
|
252
|
+
/**
|
|
253
|
+
* deserializeAws_restJson1DeleteQuickResponseCommand
|
|
254
|
+
*/
|
|
255
|
+
export declare const de_DeleteQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQuickResponseCommandOutput>;
|
|
194
256
|
/**
|
|
195
257
|
* deserializeAws_restJson1GetAssistantCommand
|
|
196
258
|
*/
|
|
@@ -207,10 +269,18 @@ export declare const de_GetContentCommand: (output: __HttpResponse, context: __S
|
|
|
207
269
|
* deserializeAws_restJson1GetContentSummaryCommand
|
|
208
270
|
*/
|
|
209
271
|
export declare const de_GetContentSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContentSummaryCommandOutput>;
|
|
272
|
+
/**
|
|
273
|
+
* deserializeAws_restJson1GetImportJobCommand
|
|
274
|
+
*/
|
|
275
|
+
export declare const de_GetImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetImportJobCommandOutput>;
|
|
210
276
|
/**
|
|
211
277
|
* deserializeAws_restJson1GetKnowledgeBaseCommand
|
|
212
278
|
*/
|
|
213
279
|
export declare const de_GetKnowledgeBaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKnowledgeBaseCommandOutput>;
|
|
280
|
+
/**
|
|
281
|
+
* deserializeAws_restJson1GetQuickResponseCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const de_GetQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQuickResponseCommandOutput>;
|
|
214
284
|
/**
|
|
215
285
|
* deserializeAws_restJson1GetRecommendationsCommand
|
|
216
286
|
*/
|
|
@@ -231,10 +301,18 @@ export declare const de_ListAssistantsCommand: (output: __HttpResponse, context:
|
|
|
231
301
|
* deserializeAws_restJson1ListContentsCommand
|
|
232
302
|
*/
|
|
233
303
|
export declare const de_ListContentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContentsCommandOutput>;
|
|
304
|
+
/**
|
|
305
|
+
* deserializeAws_restJson1ListImportJobsCommand
|
|
306
|
+
*/
|
|
307
|
+
export declare const de_ListImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportJobsCommandOutput>;
|
|
234
308
|
/**
|
|
235
309
|
* deserializeAws_restJson1ListKnowledgeBasesCommand
|
|
236
310
|
*/
|
|
237
311
|
export declare const de_ListKnowledgeBasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKnowledgeBasesCommandOutput>;
|
|
312
|
+
/**
|
|
313
|
+
* deserializeAws_restJson1ListQuickResponsesCommand
|
|
314
|
+
*/
|
|
315
|
+
export declare const de_ListQuickResponsesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQuickResponsesCommandOutput>;
|
|
238
316
|
/**
|
|
239
317
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
240
318
|
*/
|
|
@@ -255,6 +333,10 @@ export declare const de_RemoveKnowledgeBaseTemplateUriCommand: (output: __HttpRe
|
|
|
255
333
|
* deserializeAws_restJson1SearchContentCommand
|
|
256
334
|
*/
|
|
257
335
|
export declare const de_SearchContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchContentCommandOutput>;
|
|
336
|
+
/**
|
|
337
|
+
* deserializeAws_restJson1SearchQuickResponsesCommand
|
|
338
|
+
*/
|
|
339
|
+
export declare const de_SearchQuickResponsesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQuickResponsesCommandOutput>;
|
|
258
340
|
/**
|
|
259
341
|
* deserializeAws_restJson1SearchSessionsCommand
|
|
260
342
|
*/
|
|
@@ -263,6 +345,10 @@ export declare const de_SearchSessionsCommand: (output: __HttpResponse, context:
|
|
|
263
345
|
* deserializeAws_restJson1StartContentUploadCommand
|
|
264
346
|
*/
|
|
265
347
|
export declare const de_StartContentUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContentUploadCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* deserializeAws_restJson1StartImportJobCommand
|
|
350
|
+
*/
|
|
351
|
+
export declare const de_StartImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartImportJobCommandOutput>;
|
|
266
352
|
/**
|
|
267
353
|
* deserializeAws_restJson1TagResourceCommand
|
|
268
354
|
*/
|
|
@@ -279,3 +365,7 @@ export declare const de_UpdateContentCommand: (output: __HttpResponse, context:
|
|
|
279
365
|
* deserializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand
|
|
280
366
|
*/
|
|
281
367
|
export declare const de_UpdateKnowledgeBaseTemplateUriCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKnowledgeBaseTemplateUriCommandOutput>;
|
|
368
|
+
/**
|
|
369
|
+
* deserializeAws_restJson1UpdateQuickResponseCommand
|
|
370
|
+
*/
|
|
371
|
+
export declare const de_UpdateQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQuickResponseCommandOutput>;
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateKnowledgeBaseCommandInput,
|
|
16
16
|
CreateKnowledgeBaseCommandOutput,
|
|
17
17
|
} from "./commands/CreateKnowledgeBaseCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateQuickResponseCommandInput,
|
|
20
|
+
CreateQuickResponseCommandOutput,
|
|
21
|
+
} from "./commands/CreateQuickResponseCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateSessionCommandInput,
|
|
20
24
|
CreateSessionCommandOutput,
|
|
@@ -31,10 +35,18 @@ import {
|
|
|
31
35
|
DeleteContentCommandInput,
|
|
32
36
|
DeleteContentCommandOutput,
|
|
33
37
|
} from "./commands/DeleteContentCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteImportJobCommandInput,
|
|
40
|
+
DeleteImportJobCommandOutput,
|
|
41
|
+
} from "./commands/DeleteImportJobCommand";
|
|
34
42
|
import {
|
|
35
43
|
DeleteKnowledgeBaseCommandInput,
|
|
36
44
|
DeleteKnowledgeBaseCommandOutput,
|
|
37
45
|
} from "./commands/DeleteKnowledgeBaseCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteQuickResponseCommandInput,
|
|
48
|
+
DeleteQuickResponseCommandOutput,
|
|
49
|
+
} from "./commands/DeleteQuickResponseCommand";
|
|
38
50
|
import {
|
|
39
51
|
GetAssistantAssociationCommandInput,
|
|
40
52
|
GetAssistantAssociationCommandOutput,
|
|
@@ -51,10 +63,18 @@ import {
|
|
|
51
63
|
GetContentSummaryCommandInput,
|
|
52
64
|
GetContentSummaryCommandOutput,
|
|
53
65
|
} from "./commands/GetContentSummaryCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetImportJobCommandInput,
|
|
68
|
+
GetImportJobCommandOutput,
|
|
69
|
+
} from "./commands/GetImportJobCommand";
|
|
54
70
|
import {
|
|
55
71
|
GetKnowledgeBaseCommandInput,
|
|
56
72
|
GetKnowledgeBaseCommandOutput,
|
|
57
73
|
} from "./commands/GetKnowledgeBaseCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetQuickResponseCommandInput,
|
|
76
|
+
GetQuickResponseCommandOutput,
|
|
77
|
+
} from "./commands/GetQuickResponseCommand";
|
|
58
78
|
import {
|
|
59
79
|
GetRecommendationsCommandInput,
|
|
60
80
|
GetRecommendationsCommandOutput,
|
|
@@ -75,10 +95,18 @@ import {
|
|
|
75
95
|
ListContentsCommandInput,
|
|
76
96
|
ListContentsCommandOutput,
|
|
77
97
|
} from "./commands/ListContentsCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListImportJobsCommandInput,
|
|
100
|
+
ListImportJobsCommandOutput,
|
|
101
|
+
} from "./commands/ListImportJobsCommand";
|
|
78
102
|
import {
|
|
79
103
|
ListKnowledgeBasesCommandInput,
|
|
80
104
|
ListKnowledgeBasesCommandOutput,
|
|
81
105
|
} from "./commands/ListKnowledgeBasesCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListQuickResponsesCommandInput,
|
|
108
|
+
ListQuickResponsesCommandOutput,
|
|
109
|
+
} from "./commands/ListQuickResponsesCommand";
|
|
82
110
|
import {
|
|
83
111
|
ListTagsForResourceCommandInput,
|
|
84
112
|
ListTagsForResourceCommandOutput,
|
|
@@ -99,6 +127,10 @@ import {
|
|
|
99
127
|
SearchContentCommandInput,
|
|
100
128
|
SearchContentCommandOutput,
|
|
101
129
|
} from "./commands/SearchContentCommand";
|
|
130
|
+
import {
|
|
131
|
+
SearchQuickResponsesCommandInput,
|
|
132
|
+
SearchQuickResponsesCommandOutput,
|
|
133
|
+
} from "./commands/SearchQuickResponsesCommand";
|
|
102
134
|
import {
|
|
103
135
|
SearchSessionsCommandInput,
|
|
104
136
|
SearchSessionsCommandOutput,
|
|
@@ -107,6 +139,10 @@ import {
|
|
|
107
139
|
StartContentUploadCommandInput,
|
|
108
140
|
StartContentUploadCommandOutput,
|
|
109
141
|
} from "./commands/StartContentUploadCommand";
|
|
142
|
+
import {
|
|
143
|
+
StartImportJobCommandInput,
|
|
144
|
+
StartImportJobCommandOutput,
|
|
145
|
+
} from "./commands/StartImportJobCommand";
|
|
110
146
|
import {
|
|
111
147
|
TagResourceCommandInput,
|
|
112
148
|
TagResourceCommandOutput,
|
|
@@ -123,6 +159,10 @@ import {
|
|
|
123
159
|
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
124
160
|
UpdateKnowledgeBaseTemplateUriCommandOutput,
|
|
125
161
|
} from "./commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
162
|
+
import {
|
|
163
|
+
UpdateQuickResponseCommandInput,
|
|
164
|
+
UpdateQuickResponseCommandOutput,
|
|
165
|
+
} from "./commands/UpdateQuickResponseCommand";
|
|
126
166
|
import { WisdomClient } from "./WisdomClient";
|
|
127
167
|
export interface Wisdom {
|
|
128
168
|
createAssistant(
|
|
@@ -177,6 +217,19 @@ export interface Wisdom {
|
|
|
177
217
|
options: __HttpHandlerOptions,
|
|
178
218
|
cb: (err: any, data?: CreateKnowledgeBaseCommandOutput) => void
|
|
179
219
|
): void;
|
|
220
|
+
createQuickResponse(
|
|
221
|
+
args: CreateQuickResponseCommandInput,
|
|
222
|
+
options?: __HttpHandlerOptions
|
|
223
|
+
): Promise<CreateQuickResponseCommandOutput>;
|
|
224
|
+
createQuickResponse(
|
|
225
|
+
args: CreateQuickResponseCommandInput,
|
|
226
|
+
cb: (err: any, data?: CreateQuickResponseCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
createQuickResponse(
|
|
229
|
+
args: CreateQuickResponseCommandInput,
|
|
230
|
+
options: __HttpHandlerOptions,
|
|
231
|
+
cb: (err: any, data?: CreateQuickResponseCommandOutput) => void
|
|
232
|
+
): void;
|
|
180
233
|
createSession(
|
|
181
234
|
args: CreateSessionCommandInput,
|
|
182
235
|
options?: __HttpHandlerOptions
|
|
@@ -229,6 +282,19 @@ export interface Wisdom {
|
|
|
229
282
|
options: __HttpHandlerOptions,
|
|
230
283
|
cb: (err: any, data?: DeleteContentCommandOutput) => void
|
|
231
284
|
): void;
|
|
285
|
+
deleteImportJob(
|
|
286
|
+
args: DeleteImportJobCommandInput,
|
|
287
|
+
options?: __HttpHandlerOptions
|
|
288
|
+
): Promise<DeleteImportJobCommandOutput>;
|
|
289
|
+
deleteImportJob(
|
|
290
|
+
args: DeleteImportJobCommandInput,
|
|
291
|
+
cb: (err: any, data?: DeleteImportJobCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
deleteImportJob(
|
|
294
|
+
args: DeleteImportJobCommandInput,
|
|
295
|
+
options: __HttpHandlerOptions,
|
|
296
|
+
cb: (err: any, data?: DeleteImportJobCommandOutput) => void
|
|
297
|
+
): void;
|
|
232
298
|
deleteKnowledgeBase(
|
|
233
299
|
args: DeleteKnowledgeBaseCommandInput,
|
|
234
300
|
options?: __HttpHandlerOptions
|
|
@@ -242,6 +308,19 @@ export interface Wisdom {
|
|
|
242
308
|
options: __HttpHandlerOptions,
|
|
243
309
|
cb: (err: any, data?: DeleteKnowledgeBaseCommandOutput) => void
|
|
244
310
|
): void;
|
|
311
|
+
deleteQuickResponse(
|
|
312
|
+
args: DeleteQuickResponseCommandInput,
|
|
313
|
+
options?: __HttpHandlerOptions
|
|
314
|
+
): Promise<DeleteQuickResponseCommandOutput>;
|
|
315
|
+
deleteQuickResponse(
|
|
316
|
+
args: DeleteQuickResponseCommandInput,
|
|
317
|
+
cb: (err: any, data?: DeleteQuickResponseCommandOutput) => void
|
|
318
|
+
): void;
|
|
319
|
+
deleteQuickResponse(
|
|
320
|
+
args: DeleteQuickResponseCommandInput,
|
|
321
|
+
options: __HttpHandlerOptions,
|
|
322
|
+
cb: (err: any, data?: DeleteQuickResponseCommandOutput) => void
|
|
323
|
+
): void;
|
|
245
324
|
getAssistant(
|
|
246
325
|
args: GetAssistantCommandInput,
|
|
247
326
|
options?: __HttpHandlerOptions
|
|
@@ -294,6 +373,19 @@ export interface Wisdom {
|
|
|
294
373
|
options: __HttpHandlerOptions,
|
|
295
374
|
cb: (err: any, data?: GetContentSummaryCommandOutput) => void
|
|
296
375
|
): void;
|
|
376
|
+
getImportJob(
|
|
377
|
+
args: GetImportJobCommandInput,
|
|
378
|
+
options?: __HttpHandlerOptions
|
|
379
|
+
): Promise<GetImportJobCommandOutput>;
|
|
380
|
+
getImportJob(
|
|
381
|
+
args: GetImportJobCommandInput,
|
|
382
|
+
cb: (err: any, data?: GetImportJobCommandOutput) => void
|
|
383
|
+
): void;
|
|
384
|
+
getImportJob(
|
|
385
|
+
args: GetImportJobCommandInput,
|
|
386
|
+
options: __HttpHandlerOptions,
|
|
387
|
+
cb: (err: any, data?: GetImportJobCommandOutput) => void
|
|
388
|
+
): void;
|
|
297
389
|
getKnowledgeBase(
|
|
298
390
|
args: GetKnowledgeBaseCommandInput,
|
|
299
391
|
options?: __HttpHandlerOptions
|
|
@@ -307,6 +399,19 @@ export interface Wisdom {
|
|
|
307
399
|
options: __HttpHandlerOptions,
|
|
308
400
|
cb: (err: any, data?: GetKnowledgeBaseCommandOutput) => void
|
|
309
401
|
): void;
|
|
402
|
+
getQuickResponse(
|
|
403
|
+
args: GetQuickResponseCommandInput,
|
|
404
|
+
options?: __HttpHandlerOptions
|
|
405
|
+
): Promise<GetQuickResponseCommandOutput>;
|
|
406
|
+
getQuickResponse(
|
|
407
|
+
args: GetQuickResponseCommandInput,
|
|
408
|
+
cb: (err: any, data?: GetQuickResponseCommandOutput) => void
|
|
409
|
+
): void;
|
|
410
|
+
getQuickResponse(
|
|
411
|
+
args: GetQuickResponseCommandInput,
|
|
412
|
+
options: __HttpHandlerOptions,
|
|
413
|
+
cb: (err: any, data?: GetQuickResponseCommandOutput) => void
|
|
414
|
+
): void;
|
|
310
415
|
getRecommendations(
|
|
311
416
|
args: GetRecommendationsCommandInput,
|
|
312
417
|
options?: __HttpHandlerOptions
|
|
@@ -372,6 +477,19 @@ export interface Wisdom {
|
|
|
372
477
|
options: __HttpHandlerOptions,
|
|
373
478
|
cb: (err: any, data?: ListContentsCommandOutput) => void
|
|
374
479
|
): void;
|
|
480
|
+
listImportJobs(
|
|
481
|
+
args: ListImportJobsCommandInput,
|
|
482
|
+
options?: __HttpHandlerOptions
|
|
483
|
+
): Promise<ListImportJobsCommandOutput>;
|
|
484
|
+
listImportJobs(
|
|
485
|
+
args: ListImportJobsCommandInput,
|
|
486
|
+
cb: (err: any, data?: ListImportJobsCommandOutput) => void
|
|
487
|
+
): void;
|
|
488
|
+
listImportJobs(
|
|
489
|
+
args: ListImportJobsCommandInput,
|
|
490
|
+
options: __HttpHandlerOptions,
|
|
491
|
+
cb: (err: any, data?: ListImportJobsCommandOutput) => void
|
|
492
|
+
): void;
|
|
375
493
|
listKnowledgeBases(
|
|
376
494
|
args: ListKnowledgeBasesCommandInput,
|
|
377
495
|
options?: __HttpHandlerOptions
|
|
@@ -385,6 +503,19 @@ export interface Wisdom {
|
|
|
385
503
|
options: __HttpHandlerOptions,
|
|
386
504
|
cb: (err: any, data?: ListKnowledgeBasesCommandOutput) => void
|
|
387
505
|
): void;
|
|
506
|
+
listQuickResponses(
|
|
507
|
+
args: ListQuickResponsesCommandInput,
|
|
508
|
+
options?: __HttpHandlerOptions
|
|
509
|
+
): Promise<ListQuickResponsesCommandOutput>;
|
|
510
|
+
listQuickResponses(
|
|
511
|
+
args: ListQuickResponsesCommandInput,
|
|
512
|
+
cb: (err: any, data?: ListQuickResponsesCommandOutput) => void
|
|
513
|
+
): void;
|
|
514
|
+
listQuickResponses(
|
|
515
|
+
args: ListQuickResponsesCommandInput,
|
|
516
|
+
options: __HttpHandlerOptions,
|
|
517
|
+
cb: (err: any, data?: ListQuickResponsesCommandOutput) => void
|
|
518
|
+
): void;
|
|
388
519
|
listTagsForResource(
|
|
389
520
|
args: ListTagsForResourceCommandInput,
|
|
390
521
|
options?: __HttpHandlerOptions
|
|
@@ -450,6 +581,19 @@ export interface Wisdom {
|
|
|
450
581
|
options: __HttpHandlerOptions,
|
|
451
582
|
cb: (err: any, data?: SearchContentCommandOutput) => void
|
|
452
583
|
): void;
|
|
584
|
+
searchQuickResponses(
|
|
585
|
+
args: SearchQuickResponsesCommandInput,
|
|
586
|
+
options?: __HttpHandlerOptions
|
|
587
|
+
): Promise<SearchQuickResponsesCommandOutput>;
|
|
588
|
+
searchQuickResponses(
|
|
589
|
+
args: SearchQuickResponsesCommandInput,
|
|
590
|
+
cb: (err: any, data?: SearchQuickResponsesCommandOutput) => void
|
|
591
|
+
): void;
|
|
592
|
+
searchQuickResponses(
|
|
593
|
+
args: SearchQuickResponsesCommandInput,
|
|
594
|
+
options: __HttpHandlerOptions,
|
|
595
|
+
cb: (err: any, data?: SearchQuickResponsesCommandOutput) => void
|
|
596
|
+
): void;
|
|
453
597
|
searchSessions(
|
|
454
598
|
args: SearchSessionsCommandInput,
|
|
455
599
|
options?: __HttpHandlerOptions
|
|
@@ -476,6 +620,19 @@ export interface Wisdom {
|
|
|
476
620
|
options: __HttpHandlerOptions,
|
|
477
621
|
cb: (err: any, data?: StartContentUploadCommandOutput) => void
|
|
478
622
|
): void;
|
|
623
|
+
startImportJob(
|
|
624
|
+
args: StartImportJobCommandInput,
|
|
625
|
+
options?: __HttpHandlerOptions
|
|
626
|
+
): Promise<StartImportJobCommandOutput>;
|
|
627
|
+
startImportJob(
|
|
628
|
+
args: StartImportJobCommandInput,
|
|
629
|
+
cb: (err: any, data?: StartImportJobCommandOutput) => void
|
|
630
|
+
): void;
|
|
631
|
+
startImportJob(
|
|
632
|
+
args: StartImportJobCommandInput,
|
|
633
|
+
options: __HttpHandlerOptions,
|
|
634
|
+
cb: (err: any, data?: StartImportJobCommandOutput) => void
|
|
635
|
+
): void;
|
|
479
636
|
tagResource(
|
|
480
637
|
args: TagResourceCommandInput,
|
|
481
638
|
options?: __HttpHandlerOptions
|
|
@@ -528,5 +685,18 @@ export interface Wisdom {
|
|
|
528
685
|
options: __HttpHandlerOptions,
|
|
529
686
|
cb: (err: any, data?: UpdateKnowledgeBaseTemplateUriCommandOutput) => void
|
|
530
687
|
): void;
|
|
688
|
+
updateQuickResponse(
|
|
689
|
+
args: UpdateQuickResponseCommandInput,
|
|
690
|
+
options?: __HttpHandlerOptions
|
|
691
|
+
): Promise<UpdateQuickResponseCommandOutput>;
|
|
692
|
+
updateQuickResponse(
|
|
693
|
+
args: UpdateQuickResponseCommandInput,
|
|
694
|
+
cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void
|
|
695
|
+
): void;
|
|
696
|
+
updateQuickResponse(
|
|
697
|
+
args: UpdateQuickResponseCommandInput,
|
|
698
|
+
options: __HttpHandlerOptions,
|
|
699
|
+
cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void
|
|
700
|
+
): void;
|
|
531
701
|
}
|
|
532
702
|
export declare class Wisdom extends WisdomClient implements Wisdom {}
|