@aws-sdk/client-support-app 3.300.0 → 3.301.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.
@@ -46,7 +46,7 @@ export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlac
46
46
  * import { SupportAppClient, CreateSlackChannelConfigurationCommand } from "@aws-sdk/client-support-app"; // ES Modules import
47
47
  * // const { SupportAppClient, CreateSlackChannelConfigurationCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
48
48
  * const client = new SupportAppClient(config);
49
- * const input = {
49
+ * const input = { // CreateSlackChannelConfigurationRequest
50
50
  * teamId: "STRING_VALUE", // required
51
51
  * channelId: "STRING_VALUE", // required
52
52
  * channelName: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlac
27
27
  * import { SupportAppClient, DeleteSlackChannelConfigurationCommand } from "@aws-sdk/client-support-app"; // ES Modules import
28
28
  * // const { SupportAppClient, DeleteSlackChannelConfigurationCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
29
29
  * const client = new SupportAppClient(config);
30
- * const input = {
30
+ * const input = { // DeleteSlackChannelConfigurationRequest
31
31
  * teamId: "STRING_VALUE", // required
32
32
  * channelId: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSl
27
27
  * import { SupportAppClient, DeleteSlackWorkspaceConfigurationCommand } from "@aws-sdk/client-support-app"; // ES Modules import
28
28
  * // const { SupportAppClient, DeleteSlackWorkspaceConfigurationCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
29
29
  * const client = new SupportAppClient(config);
30
- * const input = {
30
+ * const input = { // DeleteSlackWorkspaceConfigurationRequest
31
31
  * teamId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteSlackWorkspaceConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackCh
26
26
  * import { SupportAppClient, ListSlackChannelConfigurationsCommand } from "@aws-sdk/client-support-app"; // ES Modules import
27
27
  * // const { SupportAppClient, ListSlackChannelConfigurationsCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
28
28
  * const client = new SupportAppClient(config);
29
- * const input = {
29
+ * const input = { // ListSlackChannelConfigurationsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new ListSlackChannelConfigurationsCommand(input);
@@ -26,7 +26,7 @@ export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlack
26
26
  * import { SupportAppClient, ListSlackWorkspaceConfigurationsCommand } from "@aws-sdk/client-support-app"; // ES Modules import
27
27
  * // const { SupportAppClient, ListSlackWorkspaceConfigurationsCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
28
28
  * const client = new SupportAppClient(config);
29
- * const input = {
29
+ * const input = { // ListSlackWorkspaceConfigurationsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new ListSlackWorkspaceConfigurationsCommand(input);
@@ -28,7 +28,7 @@ export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __M
28
28
  * import { SupportAppClient, PutAccountAliasCommand } from "@aws-sdk/client-support-app"; // ES Modules import
29
29
  * // const { SupportAppClient, PutAccountAliasCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
30
30
  * const client = new SupportAppClient(config);
31
- * const input = {
31
+ * const input = { // PutAccountAliasRequest
32
32
  * accountAlias: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new PutAccountAliasCommand(input);
@@ -55,7 +55,7 @@ export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends Regi
55
55
  * import { SupportAppClient, RegisterSlackWorkspaceForOrganizationCommand } from "@aws-sdk/client-support-app"; // ES Modules import
56
56
  * // const { SupportAppClient, RegisterSlackWorkspaceForOrganizationCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
57
57
  * const client = new SupportAppClient(config);
58
- * const input = {
58
+ * const input = { // RegisterSlackWorkspaceForOrganizationRequest
59
59
  * teamId: "STRING_VALUE", // required
60
60
  * };
61
61
  * const command = new RegisterSlackWorkspaceForOrganizationCommand(input);
@@ -26,7 +26,7 @@ export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlac
26
26
  * import { SupportAppClient, UpdateSlackChannelConfigurationCommand } from "@aws-sdk/client-support-app"; // ES Modules import
27
27
  * // const { SupportAppClient, UpdateSlackChannelConfigurationCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
28
28
  * const client = new SupportAppClient(config);
29
- * const input = {
29
+ * const input = { // UpdateSlackChannelConfigurationRequest
30
30
  * teamId: "STRING_VALUE", // required
31
31
  * channelId: "STRING_VALUE", // required
32
32
  * channelName: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support-app",
3
3
  "description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",