@aws-sdk/client-wisdom 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/dist-cjs/index.js +611 -404
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAssistantAssociationCommand.js +2 -2
  4. package/dist-es/commands/CreateAssistantCommand.js +2 -2
  5. package/dist-es/commands/CreateContentCommand.js +2 -2
  6. package/dist-es/commands/CreateKnowledgeBaseCommand.js +2 -2
  7. package/dist-es/commands/CreateQuickResponseCommand.js +2 -2
  8. package/dist-es/commands/CreateSessionCommand.js +2 -2
  9. package/dist-es/commands/DeleteAssistantAssociationCommand.js +2 -2
  10. package/dist-es/commands/DeleteAssistantCommand.js +2 -2
  11. package/dist-es/commands/DeleteContentCommand.js +2 -2
  12. package/dist-es/commands/DeleteImportJobCommand.js +2 -2
  13. package/dist-es/commands/DeleteKnowledgeBaseCommand.js +2 -2
  14. package/dist-es/commands/DeleteQuickResponseCommand.js +2 -2
  15. package/dist-es/commands/GetAssistantAssociationCommand.js +2 -2
  16. package/dist-es/commands/GetAssistantCommand.js +2 -2
  17. package/dist-es/commands/GetContentCommand.js +2 -2
  18. package/dist-es/commands/GetContentSummaryCommand.js +2 -2
  19. package/dist-es/commands/GetImportJobCommand.js +2 -2
  20. package/dist-es/commands/GetKnowledgeBaseCommand.js +2 -2
  21. package/dist-es/commands/GetQuickResponseCommand.js +2 -2
  22. package/dist-es/commands/GetRecommendationsCommand.js +2 -2
  23. package/dist-es/commands/GetSessionCommand.js +2 -2
  24. package/dist-es/commands/ListAssistantAssociationsCommand.js +2 -2
  25. package/dist-es/commands/ListAssistantsCommand.js +2 -2
  26. package/dist-es/commands/ListContentsCommand.js +2 -2
  27. package/dist-es/commands/ListImportJobsCommand.js +2 -2
  28. package/dist-es/commands/ListKnowledgeBasesCommand.js +2 -2
  29. package/dist-es/commands/ListQuickResponsesCommand.js +2 -2
  30. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  31. package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +2 -2
  32. package/dist-es/commands/QueryAssistantCommand.js +2 -2
  33. package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +2 -2
  34. package/dist-es/commands/SearchContentCommand.js +2 -2
  35. package/dist-es/commands/SearchQuickResponsesCommand.js +2 -2
  36. package/dist-es/commands/SearchSessionsCommand.js +2 -2
  37. package/dist-es/commands/StartContentUploadCommand.js +2 -2
  38. package/dist-es/commands/StartImportJobCommand.js +2 -2
  39. package/dist-es/commands/TagResourceCommand.js +2 -2
  40. package/dist-es/commands/UntagResourceCommand.js +2 -2
  41. package/dist-es/commands/UpdateContentCommand.js +2 -2
  42. package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -2
  43. package/dist-es/commands/UpdateQuickResponseCommand.js +2 -2
  44. package/dist-es/index.js +1 -0
  45. package/dist-es/runtimeConfig.shared.js +6 -1
  46. package/dist-es/schemas/schemas_0.js +387 -359
  47. package/dist-types/WisdomClient.d.ts +1 -10
  48. package/dist-types/index.d.ts +1 -0
  49. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  50. package/dist-types/runtimeConfig.d.ts +6 -2
  51. package/dist-types/runtimeConfig.native.d.ts +6 -2
  52. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  53. package/dist-types/schemas/schemas_0.d.ts +180 -215
  54. package/dist-types/ts3.4/WisdomClient.d.ts +0 -4
  55. package/dist-types/ts3.4/index.d.ts +1 -0
  56. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +179 -217
  61. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.wisdom" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.wisdom",
32
+ version: "2020-10-19",
33
+ serviceTarget: "WisdomService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Wisdom",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateAssistantAssociation } from "../schemas/schemas_0";
4
+ import { CreateAssistantAssociation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAssistantAssociationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAssistantAssociationCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "CreateAssistantAssociation", {})
13
13
  .n("WisdomClient", "CreateAssistantAssociationCommand")
14
- .sc(CreateAssistantAssociation)
14
+ .sc(CreateAssistantAssociation$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateAssistant } from "../schemas/schemas_0";
4
+ import { CreateAssistant$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAssistantCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAssistantCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "CreateAssistant", {})
13
13
  .n("WisdomClient", "CreateAssistantCommand")
14
- .sc(CreateAssistant)
14
+ .sc(CreateAssistant$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateContent } from "../schemas/schemas_0";
4
+ import { CreateContent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateContentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateContentCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "CreateContent", {})
13
13
  .n("WisdomClient", "CreateContentCommand")
14
- .sc(CreateContent)
14
+ .sc(CreateContent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateKnowledgeBase } from "../schemas/schemas_0";
4
+ import { CreateKnowledgeBase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateKnowledgeBaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateKnowledgeBaseCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "CreateKnowledgeBase", {})
13
13
  .n("WisdomClient", "CreateKnowledgeBaseCommand")
14
- .sc(CreateKnowledgeBase)
14
+ .sc(CreateKnowledgeBase$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateQuickResponse } from "../schemas/schemas_0";
4
+ import { CreateQuickResponse$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateQuickResponseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateQuickResponseCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "CreateQuickResponse", {})
13
13
  .n("WisdomClient", "CreateQuickResponseCommand")
14
- .sc(CreateQuickResponse)
14
+ .sc(CreateQuickResponse$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSession } from "../schemas/schemas_0";
4
+ import { CreateSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSessionCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "CreateSession", {})
13
13
  .n("WisdomClient", "CreateSessionCommand")
14
- .sc(CreateSession)
14
+ .sc(CreateSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAssistantAssociation } from "../schemas/schemas_0";
4
+ import { DeleteAssistantAssociation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAssistantAssociationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAssistantAssociationCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "DeleteAssistantAssociation", {})
13
13
  .n("WisdomClient", "DeleteAssistantAssociationCommand")
14
- .sc(DeleteAssistantAssociation)
14
+ .sc(DeleteAssistantAssociation$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAssistant } from "../schemas/schemas_0";
4
+ import { DeleteAssistant$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAssistantCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAssistantCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "DeleteAssistant", {})
13
13
  .n("WisdomClient", "DeleteAssistantCommand")
14
- .sc(DeleteAssistant)
14
+ .sc(DeleteAssistant$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteContent } from "../schemas/schemas_0";
4
+ import { DeleteContent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteContentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteContentCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "DeleteContent", {})
13
13
  .n("WisdomClient", "DeleteContentCommand")
14
- .sc(DeleteContent)
14
+ .sc(DeleteContent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteImportJob } from "../schemas/schemas_0";
4
+ import { DeleteImportJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteImportJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteImportJobCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "DeleteImportJob", {})
13
13
  .n("WisdomClient", "DeleteImportJobCommand")
14
- .sc(DeleteImportJob)
14
+ .sc(DeleteImportJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteKnowledgeBase } from "../schemas/schemas_0";
4
+ import { DeleteKnowledgeBase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteKnowledgeBaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteKnowledgeBaseCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "DeleteKnowledgeBase", {})
13
13
  .n("WisdomClient", "DeleteKnowledgeBaseCommand")
14
- .sc(DeleteKnowledgeBase)
14
+ .sc(DeleteKnowledgeBase$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteQuickResponse } from "../schemas/schemas_0";
4
+ import { DeleteQuickResponse$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteQuickResponseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteQuickResponseCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "DeleteQuickResponse", {})
13
13
  .n("WisdomClient", "DeleteQuickResponseCommand")
14
- .sc(DeleteQuickResponse)
14
+ .sc(DeleteQuickResponse$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAssistantAssociation } from "../schemas/schemas_0";
4
+ import { GetAssistantAssociation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAssistantAssociationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAssistantAssociationCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetAssistantAssociation", {})
13
13
  .n("WisdomClient", "GetAssistantAssociationCommand")
14
- .sc(GetAssistantAssociation)
14
+ .sc(GetAssistantAssociation$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAssistant } from "../schemas/schemas_0";
4
+ import { GetAssistant$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAssistantCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAssistantCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetAssistant", {})
13
13
  .n("WisdomClient", "GetAssistantCommand")
14
- .sc(GetAssistant)
14
+ .sc(GetAssistant$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetContent } from "../schemas/schemas_0";
4
+ import { GetContent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetContentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetContentCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetContent", {})
13
13
  .n("WisdomClient", "GetContentCommand")
14
- .sc(GetContent)
14
+ .sc(GetContent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetContentSummary } from "../schemas/schemas_0";
4
+ import { GetContentSummary$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetContentSummaryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetContentSummaryCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetContentSummary", {})
13
13
  .n("WisdomClient", "GetContentSummaryCommand")
14
- .sc(GetContentSummary)
14
+ .sc(GetContentSummary$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetImportJob } from "../schemas/schemas_0";
4
+ import { GetImportJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetImportJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetImportJobCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetImportJob", {})
13
13
  .n("WisdomClient", "GetImportJobCommand")
14
- .sc(GetImportJob)
14
+ .sc(GetImportJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetKnowledgeBase } from "../schemas/schemas_0";
4
+ import { GetKnowledgeBase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetKnowledgeBaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetKnowledgeBaseCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetKnowledgeBase", {})
13
13
  .n("WisdomClient", "GetKnowledgeBaseCommand")
14
- .sc(GetKnowledgeBase)
14
+ .sc(GetKnowledgeBase$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetQuickResponse } from "../schemas/schemas_0";
4
+ import { GetQuickResponse$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQuickResponseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQuickResponseCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetQuickResponse", {})
13
13
  .n("WisdomClient", "GetQuickResponseCommand")
14
- .sc(GetQuickResponse)
14
+ .sc(GetQuickResponse$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetRecommendations } from "../schemas/schemas_0";
4
+ import { GetRecommendations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetRecommendationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetRecommendationsCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetRecommendations", {})
13
13
  .n("WisdomClient", "GetRecommendationsCommand")
14
- .sc(GetRecommendations)
14
+ .sc(GetRecommendations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetSession } from "../schemas/schemas_0";
4
+ import { GetSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetSessionCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "GetSession", {})
13
13
  .n("WisdomClient", "GetSessionCommand")
14
- .sc(GetSession)
14
+ .sc(GetSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListAssistantAssociations } from "../schemas/schemas_0";
4
+ import { ListAssistantAssociations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAssistantAssociationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAssistantAssociationsCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListAssistantAssociations", {})
13
13
  .n("WisdomClient", "ListAssistantAssociationsCommand")
14
- .sc(ListAssistantAssociations)
14
+ .sc(ListAssistantAssociations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListAssistants } from "../schemas/schemas_0";
4
+ import { ListAssistants$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAssistantsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAssistantsCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListAssistants", {})
13
13
  .n("WisdomClient", "ListAssistantsCommand")
14
- .sc(ListAssistants)
14
+ .sc(ListAssistants$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListContents } from "../schemas/schemas_0";
4
+ import { ListContents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListContentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListContentsCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListContents", {})
13
13
  .n("WisdomClient", "ListContentsCommand")
14
- .sc(ListContents)
14
+ .sc(ListContents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListImportJobs } from "../schemas/schemas_0";
4
+ import { ListImportJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListImportJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListImportJobsCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListImportJobs", {})
13
13
  .n("WisdomClient", "ListImportJobsCommand")
14
- .sc(ListImportJobs)
14
+ .sc(ListImportJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListKnowledgeBases } from "../schemas/schemas_0";
4
+ import { ListKnowledgeBases$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListKnowledgeBasesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListKnowledgeBasesCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListKnowledgeBases", {})
13
13
  .n("WisdomClient", "ListKnowledgeBasesCommand")
14
- .sc(ListKnowledgeBases)
14
+ .sc(ListKnowledgeBases$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListQuickResponses } from "../schemas/schemas_0";
4
+ import { ListQuickResponses$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListQuickResponsesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListQuickResponsesCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListQuickResponses", {})
13
13
  .n("WisdomClient", "ListQuickResponsesCommand")
14
- .sc(ListQuickResponses)
14
+ .sc(ListQuickResponses$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "ListTagsForResource", {})
13
13
  .n("WisdomClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { NotifyRecommendationsReceived } from "../schemas/schemas_0";
4
+ import { NotifyRecommendationsReceived$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class NotifyRecommendationsReceivedCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class NotifyRecommendationsReceivedCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "NotifyRecommendationsReceived", {})
13
13
  .n("WisdomClient", "NotifyRecommendationsReceivedCommand")
14
- .sc(NotifyRecommendationsReceived)
14
+ .sc(NotifyRecommendationsReceived$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { QueryAssistant } from "../schemas/schemas_0";
4
+ import { QueryAssistant$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class QueryAssistantCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class QueryAssistantCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "QueryAssistant", {})
13
13
  .n("WisdomClient", "QueryAssistantCommand")
14
- .sc(QueryAssistant)
14
+ .sc(QueryAssistant$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RemoveKnowledgeBaseTemplateUri } from "../schemas/schemas_0";
4
+ import { RemoveKnowledgeBaseTemplateUri$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RemoveKnowledgeBaseTemplateUriCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RemoveKnowledgeBaseTemplateUriCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "RemoveKnowledgeBaseTemplateUri", {})
13
13
  .n("WisdomClient", "RemoveKnowledgeBaseTemplateUriCommand")
14
- .sc(RemoveKnowledgeBaseTemplateUri)
14
+ .sc(RemoveKnowledgeBaseTemplateUri$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SearchContent } from "../schemas/schemas_0";
4
+ import { SearchContent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SearchContentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SearchContentCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "SearchContent", {})
13
13
  .n("WisdomClient", "SearchContentCommand")
14
- .sc(SearchContent)
14
+ .sc(SearchContent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SearchQuickResponses } from "../schemas/schemas_0";
4
+ import { SearchQuickResponses$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SearchQuickResponsesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SearchQuickResponsesCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "SearchQuickResponses", {})
13
13
  .n("WisdomClient", "SearchQuickResponsesCommand")
14
- .sc(SearchQuickResponses)
14
+ .sc(SearchQuickResponses$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SearchSessions } from "../schemas/schemas_0";
4
+ import { SearchSessions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SearchSessionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SearchSessionsCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "SearchSessions", {})
13
13
  .n("WisdomClient", "SearchSessionsCommand")
14
- .sc(SearchSessions)
14
+ .sc(SearchSessions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartContentUpload } from "../schemas/schemas_0";
4
+ import { StartContentUpload$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartContentUploadCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartContentUploadCommand extends $Command
11
11
  })
12
12
  .s("WisdomService", "StartContentUpload", {})
13
13
  .n("WisdomClient", "StartContentUploadCommand")
14
- .sc(StartContentUpload)
14
+ .sc(StartContentUpload$)
15
15
  .build() {
16
16
  }