@aws-sdk/client-chime-sdk-messaging 3.952.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.
- package/dist-cjs/index.js +619 -424
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateChannelFlowCommand.js +2 -2
- package/dist-es/commands/BatchCreateChannelMembershipCommand.js +2 -2
- package/dist-es/commands/ChannelFlowCallbackCommand.js +2 -2
- package/dist-es/commands/CreateChannelBanCommand.js +2 -2
- package/dist-es/commands/CreateChannelCommand.js +2 -2
- package/dist-es/commands/CreateChannelFlowCommand.js +2 -2
- package/dist-es/commands/CreateChannelMembershipCommand.js +2 -2
- package/dist-es/commands/CreateChannelModeratorCommand.js +2 -2
- package/dist-es/commands/DeleteChannelBanCommand.js +2 -2
- package/dist-es/commands/DeleteChannelCommand.js +2 -2
- package/dist-es/commands/DeleteChannelFlowCommand.js +2 -2
- package/dist-es/commands/DeleteChannelMembershipCommand.js +2 -2
- package/dist-es/commands/DeleteChannelMessageCommand.js +2 -2
- package/dist-es/commands/DeleteChannelModeratorCommand.js +2 -2
- package/dist-es/commands/DeleteMessagingStreamingConfigurationsCommand.js +2 -2
- package/dist-es/commands/DescribeChannelBanCommand.js +2 -2
- package/dist-es/commands/DescribeChannelCommand.js +2 -2
- package/dist-es/commands/DescribeChannelFlowCommand.js +2 -2
- package/dist-es/commands/DescribeChannelMembershipCommand.js +2 -2
- package/dist-es/commands/DescribeChannelMembershipForAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/DescribeChannelModeratedByAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/DescribeChannelModeratorCommand.js +2 -2
- package/dist-es/commands/DisassociateChannelFlowCommand.js +2 -2
- package/dist-es/commands/GetChannelMembershipPreferencesCommand.js +2 -2
- package/dist-es/commands/GetChannelMessageCommand.js +2 -2
- package/dist-es/commands/GetChannelMessageStatusCommand.js +2 -2
- package/dist-es/commands/GetMessagingSessionEndpointCommand.js +2 -2
- package/dist-es/commands/GetMessagingStreamingConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListChannelBansCommand.js +2 -2
- package/dist-es/commands/ListChannelFlowsCommand.js +2 -2
- package/dist-es/commands/ListChannelMembershipsCommand.js +2 -2
- package/dist-es/commands/ListChannelMembershipsForAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/ListChannelMessagesCommand.js +2 -2
- package/dist-es/commands/ListChannelModeratorsCommand.js +2 -2
- package/dist-es/commands/ListChannelsAssociatedWithChannelFlowCommand.js +2 -2
- package/dist-es/commands/ListChannelsCommand.js +2 -2
- package/dist-es/commands/ListChannelsModeratedByAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/ListSubChannelsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutChannelExpirationSettingsCommand.js +2 -2
- package/dist-es/commands/PutChannelMembershipPreferencesCommand.js +2 -2
- package/dist-es/commands/PutMessagingStreamingConfigurationsCommand.js +2 -2
- package/dist-es/commands/RedactChannelMessageCommand.js +2 -2
- package/dist-es/commands/SearchChannelsCommand.js +2 -2
- package/dist-es/commands/SendChannelMessageCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateChannelCommand.js +2 -2
- package/dist-es/commands/UpdateChannelFlowCommand.js +2 -2
- package/dist-es/commands/UpdateChannelMessageCommand.js +2 -2
- package/dist-es/commands/UpdateChannelReadMarkerCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +381 -374
- package/dist-types/ChimeSDKMessagingClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +189 -230
- package/dist-types/ts3.4/ChimeSDKMessagingClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +188 -232
- 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 ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.chimesdkmessaging",
|
|
32
|
+
version: "2021-05-15",
|
|
33
|
+
serviceTarget: "ChimeMessagingService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Chime SDK Messaging",
|
|
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 { AssociateChannelFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateChannelFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateChannelFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateChannelFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "AssociateChannelFlow", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "AssociateChannelFlowCommand")
|
|
14
|
-
.sc(AssociateChannelFlow)
|
|
14
|
+
.sc(AssociateChannelFlow$)
|
|
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 { BatchCreateChannelMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchCreateChannelMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchCreateChannelMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchCreateChannelMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "BatchCreateChannelMembership", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "BatchCreateChannelMembershipCommand")
|
|
14
|
-
.sc(BatchCreateChannelMembership)
|
|
14
|
+
.sc(BatchCreateChannelMembership$)
|
|
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 { ChannelFlowCallback } from "../schemas/schemas_0";
|
|
4
|
+
import { ChannelFlowCallback$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ChannelFlowCallbackCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ChannelFlowCallbackCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ChannelFlowCallback", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ChannelFlowCallbackCommand")
|
|
14
|
-
.sc(ChannelFlowCallback)
|
|
14
|
+
.sc(ChannelFlowCallback$)
|
|
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 { CreateChannelBan } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChannelBan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChannelBanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChannelBanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "CreateChannelBan", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "CreateChannelBanCommand")
|
|
14
|
-
.sc(CreateChannelBan)
|
|
14
|
+
.sc(CreateChannelBan$)
|
|
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 { CreateChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "CreateChannel", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "CreateChannelCommand")
|
|
14
|
-
.sc(CreateChannel)
|
|
14
|
+
.sc(CreateChannel$)
|
|
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 { CreateChannelFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChannelFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChannelFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChannelFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "CreateChannelFlow", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "CreateChannelFlowCommand")
|
|
14
|
-
.sc(CreateChannelFlow)
|
|
14
|
+
.sc(CreateChannelFlow$)
|
|
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 { CreateChannelMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChannelMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChannelMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChannelMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "CreateChannelMembership", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "CreateChannelMembershipCommand")
|
|
14
|
-
.sc(CreateChannelMembership)
|
|
14
|
+
.sc(CreateChannelMembership$)
|
|
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 { CreateChannelModerator } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChannelModerator$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChannelModeratorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChannelModeratorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "CreateChannelModerator", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "CreateChannelModeratorCommand")
|
|
14
|
-
.sc(CreateChannelModerator)
|
|
14
|
+
.sc(CreateChannelModerator$)
|
|
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 { DeleteChannelBan } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannelBan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelBanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelBanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteChannelBan", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteChannelBanCommand")
|
|
14
|
-
.sc(DeleteChannelBan)
|
|
14
|
+
.sc(DeleteChannelBan$)
|
|
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 { DeleteChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteChannel", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteChannelCommand")
|
|
14
|
-
.sc(DeleteChannel)
|
|
14
|
+
.sc(DeleteChannel$)
|
|
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 { DeleteChannelFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannelFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteChannelFlow", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteChannelFlowCommand")
|
|
14
|
-
.sc(DeleteChannelFlow)
|
|
14
|
+
.sc(DeleteChannelFlow$)
|
|
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 { DeleteChannelMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannelMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteChannelMembership", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteChannelMembershipCommand")
|
|
14
|
-
.sc(DeleteChannelMembership)
|
|
14
|
+
.sc(DeleteChannelMembership$)
|
|
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 { DeleteChannelMessage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannelMessage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelMessageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelMessageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteChannelMessage", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteChannelMessageCommand")
|
|
14
|
-
.sc(DeleteChannelMessage)
|
|
14
|
+
.sc(DeleteChannelMessage$)
|
|
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 { DeleteChannelModerator } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannelModerator$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelModeratorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelModeratorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteChannelModerator", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteChannelModeratorCommand")
|
|
14
|
-
.sc(DeleteChannelModerator)
|
|
14
|
+
.sc(DeleteChannelModerator$)
|
|
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 { DeleteMessagingStreamingConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMessagingStreamingConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMessagingStreamingConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMessagingStreamingConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DeleteMessagingStreamingConfigurations", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DeleteMessagingStreamingConfigurationsCommand")
|
|
14
|
-
.sc(DeleteMessagingStreamingConfigurations)
|
|
14
|
+
.sc(DeleteMessagingStreamingConfigurations$)
|
|
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 { DescribeChannelBan } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannelBan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelBanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelBanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannelBan", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelBanCommand")
|
|
14
|
-
.sc(DescribeChannelBan)
|
|
14
|
+
.sc(DescribeChannelBan$)
|
|
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 { DescribeChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannel", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelCommand")
|
|
14
|
-
.sc(DescribeChannel)
|
|
14
|
+
.sc(DescribeChannel$)
|
|
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 { DescribeChannelFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannelFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannelFlow", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelFlowCommand")
|
|
14
|
-
.sc(DescribeChannelFlow)
|
|
14
|
+
.sc(DescribeChannelFlow$)
|
|
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 { DescribeChannelMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannelMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannelMembership", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelMembershipCommand")
|
|
14
|
-
.sc(DescribeChannelMembership)
|
|
14
|
+
.sc(DescribeChannelMembership$)
|
|
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 { DescribeChannelMembershipForAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannelMembershipForAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelMembershipForAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelMembershipForAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannelMembershipForAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelMembershipForAppInstanceUserCommand")
|
|
14
|
-
.sc(DescribeChannelMembershipForAppInstanceUser)
|
|
14
|
+
.sc(DescribeChannelMembershipForAppInstanceUser$)
|
|
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 { DescribeChannelModeratedByAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannelModeratedByAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelModeratedByAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelModeratedByAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannelModeratedByAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelModeratedByAppInstanceUserCommand")
|
|
14
|
-
.sc(DescribeChannelModeratedByAppInstanceUser)
|
|
14
|
+
.sc(DescribeChannelModeratedByAppInstanceUser$)
|
|
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 { DescribeChannelModerator } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannelModerator$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelModeratorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelModeratorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DescribeChannelModerator", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DescribeChannelModeratorCommand")
|
|
14
|
-
.sc(DescribeChannelModerator)
|
|
14
|
+
.sc(DescribeChannelModerator$)
|
|
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 { DisassociateChannelFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateChannelFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateChannelFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateChannelFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "DisassociateChannelFlow", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "DisassociateChannelFlowCommand")
|
|
14
|
-
.sc(DisassociateChannelFlow)
|
|
14
|
+
.sc(DisassociateChannelFlow$)
|
|
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 { GetChannelMembershipPreferences } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChannelMembershipPreferences$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChannelMembershipPreferencesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChannelMembershipPreferencesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "GetChannelMembershipPreferences", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "GetChannelMembershipPreferencesCommand")
|
|
14
|
-
.sc(GetChannelMembershipPreferences)
|
|
14
|
+
.sc(GetChannelMembershipPreferences$)
|
|
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 { GetChannelMessage } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChannelMessage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChannelMessageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChannelMessageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "GetChannelMessage", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "GetChannelMessageCommand")
|
|
14
|
-
.sc(GetChannelMessage)
|
|
14
|
+
.sc(GetChannelMessage$)
|
|
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 { GetChannelMessageStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChannelMessageStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChannelMessageStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChannelMessageStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "GetChannelMessageStatus", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "GetChannelMessageStatusCommand")
|
|
14
|
-
.sc(GetChannelMessageStatus)
|
|
14
|
+
.sc(GetChannelMessageStatus$)
|
|
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 { GetMessagingSessionEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMessagingSessionEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMessagingSessionEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMessagingSessionEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "GetMessagingSessionEndpoint", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "GetMessagingSessionEndpointCommand")
|
|
14
|
-
.sc(GetMessagingSessionEndpoint)
|
|
14
|
+
.sc(GetMessagingSessionEndpoint$)
|
|
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 { GetMessagingStreamingConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMessagingStreamingConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMessagingStreamingConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMessagingStreamingConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "GetMessagingStreamingConfigurations", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "GetMessagingStreamingConfigurationsCommand")
|
|
14
|
-
.sc(GetMessagingStreamingConfigurations)
|
|
14
|
+
.sc(GetMessagingStreamingConfigurations$)
|
|
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 { ListChannelBans } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelBans$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelBansCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelBansCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelBans", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelBansCommand")
|
|
14
|
-
.sc(ListChannelBans)
|
|
14
|
+
.sc(ListChannelBans$)
|
|
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 { ListChannelFlows } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelFlows$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelFlowsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelFlowsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelFlows", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelFlowsCommand")
|
|
14
|
-
.sc(ListChannelFlows)
|
|
14
|
+
.sc(ListChannelFlows$)
|
|
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 { ListChannelMemberships } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelMemberships$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelMembershipsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelMembershipsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelMemberships", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelMembershipsCommand")
|
|
14
|
-
.sc(ListChannelMemberships)
|
|
14
|
+
.sc(ListChannelMemberships$)
|
|
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 { ListChannelMembershipsForAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelMembershipsForAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelMembershipsForAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelMembershipsForAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelMembershipsForAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelMembershipsForAppInstanceUserCommand")
|
|
14
|
-
.sc(ListChannelMembershipsForAppInstanceUser)
|
|
14
|
+
.sc(ListChannelMembershipsForAppInstanceUser$)
|
|
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 { ListChannelMessages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelMessages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelMessagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelMessagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelMessages", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelMessagesCommand")
|
|
14
|
-
.sc(ListChannelMessages)
|
|
14
|
+
.sc(ListChannelMessages$)
|
|
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 { ListChannelModerators } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelModerators$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelModeratorsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelModeratorsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelModerators", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelModeratorsCommand")
|
|
14
|
-
.sc(ListChannelModerators)
|
|
14
|
+
.sc(ListChannelModerators$)
|
|
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 { ListChannelsAssociatedWithChannelFlow } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannelsAssociatedWithChannelFlow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelsAssociatedWithChannelFlowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelsAssociatedWithChannelFlowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeMessagingService", "ListChannelsAssociatedWithChannelFlow", {})
|
|
13
13
|
.n("ChimeSDKMessagingClient", "ListChannelsAssociatedWithChannelFlowCommand")
|
|
14
|
-
.sc(ListChannelsAssociatedWithChannelFlow)
|
|
14
|
+
.sc(ListChannelsAssociatedWithChannelFlow$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|