@aws-sdk/client-wisdom 3.890.0 → 3.891.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 (42) hide show
  1. package/dist-types/commands/CreateAssistantAssociationCommand.d.ts +2 -0
  2. package/dist-types/commands/CreateAssistantCommand.d.ts +2 -0
  3. package/dist-types/commands/CreateContentCommand.d.ts +2 -0
  4. package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +2 -0
  5. package/dist-types/commands/CreateQuickResponseCommand.d.ts +2 -0
  6. package/dist-types/commands/CreateSessionCommand.d.ts +2 -0
  7. package/dist-types/commands/DeleteAssistantAssociationCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteAssistantCommand.d.ts +2 -0
  9. package/dist-types/commands/DeleteContentCommand.d.ts +2 -0
  10. package/dist-types/commands/DeleteImportJobCommand.d.ts +2 -0
  11. package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +2 -0
  12. package/dist-types/commands/DeleteQuickResponseCommand.d.ts +2 -0
  13. package/dist-types/commands/GetAssistantAssociationCommand.d.ts +2 -0
  14. package/dist-types/commands/GetAssistantCommand.d.ts +2 -0
  15. package/dist-types/commands/GetContentCommand.d.ts +2 -0
  16. package/dist-types/commands/GetContentSummaryCommand.d.ts +2 -0
  17. package/dist-types/commands/GetImportJobCommand.d.ts +2 -0
  18. package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +2 -0
  19. package/dist-types/commands/GetQuickResponseCommand.d.ts +2 -0
  20. package/dist-types/commands/GetRecommendationsCommand.d.ts +2 -0
  21. package/dist-types/commands/GetSessionCommand.d.ts +2 -0
  22. package/dist-types/commands/ListAssistantAssociationsCommand.d.ts +2 -0
  23. package/dist-types/commands/ListAssistantsCommand.d.ts +2 -0
  24. package/dist-types/commands/ListContentsCommand.d.ts +2 -0
  25. package/dist-types/commands/ListImportJobsCommand.d.ts +2 -0
  26. package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +2 -0
  27. package/dist-types/commands/ListQuickResponsesCommand.d.ts +2 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  29. package/dist-types/commands/NotifyRecommendationsReceivedCommand.d.ts +2 -0
  30. package/dist-types/commands/QueryAssistantCommand.d.ts +2 -0
  31. package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +2 -0
  32. package/dist-types/commands/SearchContentCommand.d.ts +2 -0
  33. package/dist-types/commands/SearchQuickResponsesCommand.d.ts +2 -0
  34. package/dist-types/commands/SearchSessionsCommand.d.ts +2 -0
  35. package/dist-types/commands/StartContentUploadCommand.d.ts +2 -0
  36. package/dist-types/commands/StartImportJobCommand.d.ts +2 -0
  37. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  38. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  39. package/dist-types/commands/UpdateContentCommand.d.ts +2 -0
  40. package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +2 -0
  41. package/dist-types/commands/UpdateQuickResponseCommand.d.ts +2 -0
  42. package/package.json +10 -10
@@ -35,6 +35,8 @@ declare const CreateAssistantAssociationCommand_base: {
35
35
  * ```javascript
36
36
  * import { WisdomClient, CreateAssistantAssociationCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
37
37
  * // const { WisdomClient, CreateAssistantAssociationCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
38
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
39
+ * const config = {}; // type is WisdomClientConfig
38
40
  * const client = new WisdomClient(config);
39
41
  * const input = { // CreateAssistantAssociationRequest
40
42
  * assistantId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateAssistantCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, CreateAssistantCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, CreateAssistantCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // CreateAssistantRequest
38
40
  * clientToken: "STRING_VALUE",
@@ -34,6 +34,8 @@ declare const CreateContentCommand_base: {
34
34
  * ```javascript
35
35
  * import { WisdomClient, CreateContentCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
36
36
  * // const { WisdomClient, CreateContentCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
37
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
38
+ * const config = {}; // type is WisdomClientConfig
37
39
  * const client = new WisdomClient(config);
38
40
  * const input = { // CreateContentRequest
39
41
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -56,6 +56,8 @@ declare const CreateKnowledgeBaseCommand_base: {
56
56
  * ```javascript
57
57
  * import { WisdomClient, CreateKnowledgeBaseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
58
58
  * // const { WisdomClient, CreateKnowledgeBaseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
59
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
60
+ * const config = {}; // type is WisdomClientConfig
59
61
  * const client = new WisdomClient(config);
60
62
  * const input = { // CreateKnowledgeBaseRequest
61
63
  * clientToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const CreateQuickResponseCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, CreateQuickResponseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, CreateQuickResponseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // CreateQuickResponseRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const CreateSessionCommand_base: {
35
35
  * ```javascript
36
36
  * import { WisdomClient, CreateSessionCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
37
37
  * // const { WisdomClient, CreateSessionCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
38
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
39
+ * const config = {}; // type is WisdomClientConfig
38
40
  * const client = new WisdomClient(config);
39
41
  * const input = { // CreateSessionRequest
40
42
  * clientToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const DeleteAssistantAssociationCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, DeleteAssistantAssociationCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, DeleteAssistantAssociationCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // DeleteAssistantAssociationRequest
38
40
  * assistantAssociationId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteAssistantCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, DeleteAssistantCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, DeleteAssistantCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // DeleteAssistantRequest
38
40
  * assistantId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteContentCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, DeleteContentCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, DeleteContentCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // DeleteContentRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteImportJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, DeleteImportJobCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, DeleteImportJobCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // DeleteImportJobRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -41,6 +41,8 @@ declare const DeleteKnowledgeBaseCommand_base: {
41
41
  * ```javascript
42
42
  * import { WisdomClient, DeleteKnowledgeBaseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
43
43
  * // const { WisdomClient, DeleteKnowledgeBaseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
44
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
45
+ * const config = {}; // type is WisdomClientConfig
44
46
  * const client = new WisdomClient(config);
45
47
  * const input = { // DeleteKnowledgeBaseRequest
46
48
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteQuickResponseCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, DeleteQuickResponseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, DeleteQuickResponseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // DeleteQuickResponseRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetAssistantAssociationCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetAssistantAssociationCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetAssistantAssociationCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetAssistantAssociationRequest
38
40
  * assistantAssociationId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetAssistantCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetAssistantCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetAssistantCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetAssistantRequest
38
40
  * assistantId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetContentCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetContentCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetContentCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetContentRequest
38
40
  * contentId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetContentSummaryCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetContentSummaryCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetContentSummaryCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetContentSummaryRequest
38
40
  * contentId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetImportJobCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetImportJobCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetImportJobCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetImportJobRequest
38
40
  * importJobId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetKnowledgeBaseCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetKnowledgeBaseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetKnowledgeBaseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetKnowledgeBaseRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetQuickResponseCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetQuickResponseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetQuickResponseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetQuickResponseRequest
38
40
  * quickResponseId: "STRING_VALUE", // required
@@ -38,6 +38,8 @@ declare const GetRecommendationsCommand_base: {
38
38
  * ```javascript
39
39
  * import { WisdomClient, GetRecommendationsCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
40
40
  * // const { WisdomClient, GetRecommendationsCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
41
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
42
+ * const config = {}; // type is WisdomClientConfig
41
43
  * const client = new WisdomClient(config);
42
44
  * const input = { // GetRecommendationsRequest
43
45
  * assistantId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, GetSessionCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, GetSessionCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // GetSessionRequest
38
40
  * assistantId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListAssistantAssociationsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListAssistantAssociationsCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListAssistantAssociationsCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListAssistantAssociationsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListAssistantsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListAssistantsCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListAssistantsCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListAssistantsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListContentsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListContentsCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListContentsCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListContentsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListImportJobsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListImportJobsCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListImportJobsCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListImportJobsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListKnowledgeBasesCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListKnowledgeBasesCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListKnowledgeBasesCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListKnowledgeBasesRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListQuickResponsesCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListQuickResponsesCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListQuickResponsesCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListQuickResponsesRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, ListTagsForResourceCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, ListTagsForResourceCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // ListTagsForResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const NotifyRecommendationsReceivedCommand_base: {
35
35
  * ```javascript
36
36
  * import { WisdomClient, NotifyRecommendationsReceivedCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
37
37
  * // const { WisdomClient, NotifyRecommendationsReceivedCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
38
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
39
+ * const config = {}; // type is WisdomClientConfig
38
40
  * const client = new WisdomClient(config);
39
41
  * const input = { // NotifyRecommendationsReceivedRequest
40
42
  * assistantId: "STRING_VALUE", // required
@@ -37,6 +37,8 @@ declare const QueryAssistantCommand_base: {
37
37
  * ```javascript
38
38
  * import { WisdomClient, QueryAssistantCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
39
39
  * // const { WisdomClient, QueryAssistantCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
40
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
41
+ * const config = {}; // type is WisdomClientConfig
40
42
  * const client = new WisdomClient(config);
41
43
  * const input = { // QueryAssistantRequest
42
44
  * assistantId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const RemoveKnowledgeBaseTemplateUriCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, RemoveKnowledgeBaseTemplateUriCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, RemoveKnowledgeBaseTemplateUriCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // RemoveKnowledgeBaseTemplateUriRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const SearchContentCommand_base: {
34
34
  * ```javascript
35
35
  * import { WisdomClient, SearchContentCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
36
36
  * // const { WisdomClient, SearchContentCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
37
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
38
+ * const config = {}; // type is WisdomClientConfig
37
39
  * const client = new WisdomClient(config);
38
40
  * const input = { // SearchContentRequest
39
41
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const SearchQuickResponsesCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, SearchQuickResponsesCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, SearchQuickResponsesCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // SearchQuickResponsesRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const SearchSessionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, SearchSessionsCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, SearchSessionsCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // SearchSessionsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -36,6 +36,8 @@ declare const StartContentUploadCommand_base: {
36
36
  * ```javascript
37
37
  * import { WisdomClient, StartContentUploadCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
38
38
  * // const { WisdomClient, StartContentUploadCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
39
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
40
+ * const config = {}; // type is WisdomClientConfig
39
41
  * const client = new WisdomClient(config);
40
42
  * const input = { // StartContentUploadRequest
41
43
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -39,6 +39,8 @@ declare const StartImportJobCommand_base: {
39
39
  * ```javascript
40
40
  * import { WisdomClient, StartImportJobCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
41
41
  * // const { WisdomClient, StartImportJobCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
42
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
43
+ * const config = {}; // type is WisdomClientConfig
42
44
  * const client = new WisdomClient(config);
43
45
  * const input = { // StartImportJobRequest
44
46
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, TagResourceCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, TagResourceCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // TagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, UntagResourceCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, UntagResourceCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // UntagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateContentCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, UpdateContentCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, UpdateContentCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // UpdateContentRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -38,6 +38,8 @@ declare const UpdateKnowledgeBaseTemplateUriCommand_base: {
38
38
  * ```javascript
39
39
  * import { WisdomClient, UpdateKnowledgeBaseTemplateUriCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
40
40
  * // const { WisdomClient, UpdateKnowledgeBaseTemplateUriCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
41
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
42
+ * const config = {}; // type is WisdomClientConfig
41
43
  * const client = new WisdomClient(config);
42
44
  * const input = { // UpdateKnowledgeBaseTemplateUriRequest
43
45
  * knowledgeBaseId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateQuickResponseCommand_base: {
33
33
  * ```javascript
34
34
  * import { WisdomClient, UpdateQuickResponseCommand } from "@aws-sdk/client-wisdom"; // ES Modules import
35
35
  * // const { WisdomClient, UpdateQuickResponseCommand } = require("@aws-sdk/client-wisdom"); // CommonJS import
36
+ * // import type { WisdomClientConfig } from "@aws-sdk/client-wisdom";
37
+ * const config = {}; // type is WisdomClientConfig
36
38
  * const client = new WisdomClient(config);
37
39
  * const input = { // UpdateQuickResponseRequest
38
40
  * knowledgeBaseId: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-wisdom",
3
3
  "description": "AWS SDK for JavaScript Wisdom Client for Node.js, Browser and React Native",
4
- "version": "3.890.0",
4
+ "version": "3.891.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-wisdom",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
29
  "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
@@ -38,7 +38,7 @@
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
40
  "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
@@ -54,7 +54,7 @@
54
54
  "@smithy/util-defaults-mode-node": "^4.1.2",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "@types/uuid": "^9.0.1",
60
60
  "tslib": "^2.6.2",