@aws-sdk/client-qbusiness 3.565.0 → 3.567.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 +8 -3
- package/dist-cjs/index.js +434 -9
- package/dist-cjs/runtimeConfig.browser.js +4 -0
- package/dist-cjs/runtimeConfig.js +4 -0
- package/dist-cjs/runtimeConfig.native.js +3 -0
- package/dist-es/QBusiness.js +2 -0
- package/dist-es/QBusinessClient.js +8 -4
- package/dist-es/commands/ChatCommand.js +32 -0
- package/dist-es/commands/CreatePluginCommand.js +2 -1
- package/dist-es/commands/GetPluginCommand.js +2 -1
- package/dist-es/commands/UpdatePluginCommand.js +2 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +134 -0
- package/dist-es/protocols/Aws_restJson1.js +225 -1
- package/dist-es/runtimeConfig.browser.js +5 -1
- package/dist-es/runtimeConfig.js +4 -0
- package/dist-es/runtimeConfig.native.js +3 -0
- package/dist-types/QBusiness.d.ts +8 -4
- package/dist-types/QBusinessClient.d.ts +19 -9
- package/dist-types/commands/ChatCommand.d.ts +281 -0
- package/dist-types/commands/ChatSyncCommand.d.ts +14 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +8 -1
- package/dist-types/commands/CreateIndexCommand.d.ts +1 -0
- package/dist-types/commands/CreatePluginCommand.d.ts +15 -2
- package/dist-types/commands/GetIndexCommand.d.ts +1 -0
- package/dist-types/commands/GetPluginCommand.d.ts +14 -1
- package/dist-types/commands/ListMessagesCommand.d.ts +6 -1
- package/dist-types/commands/ListPluginsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -0
- package/dist-types/commands/UpdatePluginCommand.d.ts +12 -0
- package/dist-types/commands/UpdateWebExperienceCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -4
- package/dist-types/models/models_0.d.ts +867 -47
- package/dist-types/protocols/Aws_restJson1.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/QBusiness.d.ts +14 -0
- package/dist-types/ts3.4/QBusinessClient.d.ts +19 -0
- package/dist-types/ts3.4/commands/ChatCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +333 -11
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +13 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +19 -15
package/README.md
CHANGED
|
@@ -6,9 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript QBusiness Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<note>
|
|
10
|
-
<p>Amazon Q is in preview release and is subject to change.</p>
|
|
11
|
-
</note>
|
|
12
9
|
<p>This is the <i>Amazon Q Business</i> API Reference. Amazon Q Business is a fully
|
|
13
10
|
managed, generative-AI powered enterprise chat assistant that you can deploy within your
|
|
14
11
|
organization. Amazon Q Business enhances employee productivity by supporting key tasks such
|
|
@@ -299,6 +296,14 @@ BatchPutDocument
|
|
|
299
296
|
|
|
300
297
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qbusiness/command/BatchPutDocumentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qbusiness/Interface/BatchPutDocumentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qbusiness/Interface/BatchPutDocumentCommandOutput/)
|
|
301
298
|
|
|
299
|
+
</details>
|
|
300
|
+
<details>
|
|
301
|
+
<summary>
|
|
302
|
+
Chat
|
|
303
|
+
</summary>
|
|
304
|
+
|
|
305
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qbusiness/command/ChatCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qbusiness/Interface/ChatCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qbusiness/Interface/ChatCommandOutput/)
|
|
306
|
+
|
|
302
307
|
</details>
|
|
303
308
|
<details>
|
|
304
309
|
<summary>
|