@wildix/stream-client 0.0.1 → 0.0.5
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/StreamService.js +98 -6
- package/dist-cjs/commands/AddChannelMemberCommand.js +21 -0
- package/dist-cjs/commands/AddChannelMembersCommand.js +21 -0
- package/dist-cjs/commands/AssignChannelCommand.js +21 -0
- package/dist-cjs/commands/CreateGroupChannelCommand.js +21 -0
- package/dist-cjs/commands/CreateKiteChannelCommand.js +21 -0
- package/dist-cjs/commands/CreateSectionCommand.js +21 -0
- package/dist-cjs/commands/DeleteChannelCommand.js +21 -0
- package/dist-cjs/commands/DeleteChannelMemberCommand.js +21 -0
- package/dist-cjs/commands/DeleteMessageReactionCommand.js +21 -0
- package/dist-cjs/commands/DeleteSectionCommand.js +21 -0
- package/dist-cjs/commands/GetChannelCommand.js +21 -0
- package/dist-cjs/commands/GetChannelMemberCommand.js +21 -0
- package/dist-cjs/commands/GetDirectChannelIdCommand.js +21 -0
- package/dist-cjs/commands/GetFilePresignedDownloadUrlCommand.js +21 -0
- package/dist-cjs/commands/GetOrCreateDirectChannelCommand.js +21 -0
- package/dist-cjs/commands/GetOrCreateSmsChannelCommand.js +21 -0
- package/dist-cjs/commands/GetOrCreateTelephonyChannelCommand.js +21 -0
- package/dist-cjs/commands/GetOrCreateWhatsAppChannelCommand.js +21 -0
- package/dist-cjs/commands/GetSmsChannelIdCommand.js +21 -0
- package/dist-cjs/commands/GetTelephonyChannelIdCommand.js +21 -0
- package/dist-cjs/commands/GetTokenCommand.js +21 -0
- package/dist-cjs/commands/GetUploadedFileInfoCommand.js +21 -0
- package/dist-cjs/commands/GetWhatsAppChannelIdCommand.js +21 -0
- package/dist-cjs/commands/{AddReactionCommand.js → HideChannelCommand.js} +7 -7
- package/dist-cjs/commands/{EditMessageCommand.js → JoinChannelCommand.js} +7 -7
- package/dist-cjs/commands/LeaveChannelCommand.js +21 -0
- package/dist-cjs/commands/ListChannelMembersCommand.js +21 -0
- package/dist-cjs/commands/ListChannelMembersReadStatusCommand.js +21 -0
- package/dist-cjs/commands/MarkReadCommand.js +21 -0
- package/dist-cjs/commands/MarkUnreadCommand.js +21 -0
- package/dist-cjs/commands/MoveChannelToSectionCommand.js +21 -0
- package/dist-cjs/commands/MuteChannelCommand.js +21 -0
- package/dist-cjs/commands/PartialUpdateChannelCommand.js +21 -0
- package/dist-cjs/commands/PartialUpdateMessageCommand.js +21 -0
- package/dist-cjs/commands/PinChannelCommand.js +21 -0
- package/dist-cjs/commands/QueryChannelsCommand.js +21 -0
- package/dist-cjs/commands/RemoveChannelFromSectionCommand.js +21 -0
- package/dist-cjs/commands/RenameSectionCommand.js +21 -0
- package/dist-cjs/commands/SendGiphyCommand.js +21 -0
- package/dist-cjs/commands/SendMessageReactionCommand.js +21 -0
- package/dist-cjs/commands/SendSystemMessageCommand.js +21 -0
- package/dist-cjs/commands/SendTypingStartCommand.js +21 -0
- package/dist-cjs/commands/{RemoveReactionCommand.js → SendTypingStopCommand.js} +7 -7
- package/dist-cjs/commands/ShowChannelCommand.js +21 -0
- package/dist-cjs/commands/UnmuteChannelCommand.js +21 -0
- package/dist-cjs/commands/UnpinChannelCommand.js +21 -0
- package/dist-cjs/commands/UpdateChannelCommand.js +21 -0
- package/dist-cjs/commands/UpdateMessageCommand.js +21 -0
- package/dist-cjs/commands/UploadFileCommand.js +21 -0
- package/dist-cjs/commands/index.js +49 -3
- package/dist-cjs/models/models_0.js +293 -26
- package/dist-cjs/protocols/Aws_restJson1.js +1955 -131
- package/dist-es/StreamService.js +98 -6
- package/dist-es/commands/AddChannelMemberCommand.js +17 -0
- package/dist-es/commands/AddChannelMembersCommand.js +17 -0
- package/dist-es/commands/AssignChannelCommand.js +17 -0
- package/dist-es/commands/CreateGroupChannelCommand.js +17 -0
- package/dist-es/commands/CreateKiteChannelCommand.js +17 -0
- package/dist-es/commands/CreateSectionCommand.js +17 -0
- package/dist-es/commands/DeleteChannelCommand.js +17 -0
- package/dist-es/commands/DeleteChannelMemberCommand.js +17 -0
- package/dist-es/commands/DeleteMessageReactionCommand.js +17 -0
- package/dist-es/commands/DeleteSectionCommand.js +17 -0
- package/dist-es/commands/GetChannelCommand.js +17 -0
- package/dist-es/commands/GetChannelMemberCommand.js +17 -0
- package/dist-es/commands/GetDirectChannelIdCommand.js +17 -0
- package/dist-es/commands/GetFilePresignedDownloadUrlCommand.js +17 -0
- package/dist-es/commands/GetOrCreateDirectChannelCommand.js +17 -0
- package/dist-es/commands/GetOrCreateSmsChannelCommand.js +17 -0
- package/dist-es/commands/GetOrCreateTelephonyChannelCommand.js +17 -0
- package/dist-es/commands/GetOrCreateWhatsAppChannelCommand.js +17 -0
- package/dist-es/commands/GetSmsChannelIdCommand.js +17 -0
- package/dist-es/commands/GetTelephonyChannelIdCommand.js +17 -0
- package/dist-es/commands/GetTokenCommand.js +17 -0
- package/dist-es/commands/GetUploadedFileInfoCommand.js +17 -0
- package/dist-es/commands/GetWhatsAppChannelIdCommand.js +17 -0
- package/dist-es/commands/{EditMessageCommand.js → HideChannelCommand.js} +6 -6
- package/dist-es/commands/{AddReactionCommand.js → JoinChannelCommand.js} +6 -6
- package/dist-es/commands/LeaveChannelCommand.js +17 -0
- package/dist-es/commands/ListChannelMembersCommand.js +17 -0
- package/dist-es/commands/ListChannelMembersReadStatusCommand.js +17 -0
- package/dist-es/commands/MarkReadCommand.js +17 -0
- package/dist-es/commands/MarkUnreadCommand.js +17 -0
- package/dist-es/commands/MoveChannelToSectionCommand.js +17 -0
- package/dist-es/commands/MuteChannelCommand.js +17 -0
- package/dist-es/commands/PartialUpdateChannelCommand.js +17 -0
- package/dist-es/commands/PartialUpdateMessageCommand.js +17 -0
- package/dist-es/commands/PinChannelCommand.js +17 -0
- package/dist-es/commands/QueryChannelsCommand.js +17 -0
- package/dist-es/commands/RemoveChannelFromSectionCommand.js +17 -0
- package/dist-es/commands/RenameSectionCommand.js +17 -0
- package/dist-es/commands/SendGiphyCommand.js +17 -0
- package/dist-es/commands/SendMessageReactionCommand.js +17 -0
- package/dist-es/commands/SendSystemMessageCommand.js +17 -0
- package/dist-es/commands/SendTypingStartCommand.js +17 -0
- package/dist-es/commands/{RemoveReactionCommand.js → SendTypingStopCommand.js} +6 -6
- package/dist-es/commands/ShowChannelCommand.js +17 -0
- package/dist-es/commands/UnmuteChannelCommand.js +17 -0
- package/dist-es/commands/UnpinChannelCommand.js +17 -0
- package/dist-es/commands/UpdateChannelCommand.js +17 -0
- package/dist-es/commands/UpdateMessageCommand.js +17 -0
- package/dist-es/commands/UploadFileCommand.js +17 -0
- package/dist-es/commands/index.js +49 -3
- package/dist-es/models/models_0.js +281 -23
- package/dist-es/protocols/Aws_restJson1.js +1843 -113
- package/dist-types/StreamService.d.ts +341 -15
- package/dist-types/StreamServiceClient.d.ts +51 -5
- package/dist-types/commands/AddChannelMemberCommand.d.ts +101 -0
- package/dist-types/commands/AddChannelMembersCommand.d.ts +108 -0
- package/dist-types/commands/AssignChannelCommand.d.ts +96 -0
- package/dist-types/commands/CreateGroupChannelCommand.d.ts +201 -0
- package/dist-types/commands/CreateKiteChannelCommand.d.ts +291 -0
- package/dist-types/commands/CreateSectionCommand.d.ts +96 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +82 -0
- package/dist-types/commands/DeleteChannelMemberCommand.d.ts +88 -0
- package/dist-types/commands/DeleteMessageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMessageReactionCommand.d.ts +193 -0
- package/dist-types/commands/DeleteSectionCommand.d.ts +84 -0
- package/dist-types/commands/GetChannelCommand.d.ts +150 -0
- package/dist-types/commands/GetChannelMemberCommand.d.ts +93 -0
- package/dist-types/commands/GetDirectChannelIdCommand.d.ts +90 -0
- package/dist-types/commands/GetFilePresignedDownloadUrlCommand.d.ts +94 -0
- package/dist-types/commands/GetInboxCommand.d.ts +53 -6
- package/dist-types/commands/GetMessageCommand.d.ts +57 -1
- package/dist-types/commands/GetOrCreateDirectChannelCommand.d.ts +154 -0
- package/dist-types/commands/GetOrCreateSmsChannelCommand.d.ts +151 -0
- package/dist-types/commands/GetOrCreateTelephonyChannelCommand.d.ts +150 -0
- package/dist-types/commands/GetOrCreateWhatsAppChannelCommand.d.ts +151 -0
- package/dist-types/commands/GetSmsChannelIdCommand.d.ts +86 -0
- package/dist-types/commands/GetTelephonyChannelIdCommand.d.ts +86 -0
- package/dist-types/commands/GetTokenCommand.d.ts +85 -0
- package/dist-types/commands/GetUploadedFileInfoCommand.d.ts +98 -0
- package/dist-types/commands/GetWhatsAppChannelIdCommand.d.ts +86 -0
- package/dist-types/commands/HideChannelCommand.d.ts +84 -0
- package/dist-types/commands/JoinChannelCommand.d.ts +151 -0
- package/dist-types/commands/LeaveChannelCommand.d.ts +85 -0
- package/dist-types/commands/ListChannelMembersCommand.d.ts +94 -0
- package/dist-types/commands/ListChannelMembersReadStatusCommand.d.ts +92 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +53 -6
- package/dist-types/commands/ListMentionsCommand.d.ts +58 -2
- package/dist-types/commands/ListMessagesCommand.d.ts +57 -1
- package/dist-types/commands/MarkReadCommand.d.ts +99 -0
- package/dist-types/commands/MarkUnreadCommand.d.ts +103 -0
- package/dist-types/commands/MoveChannelToSectionCommand.d.ts +101 -0
- package/dist-types/commands/MuteChannelCommand.d.ts +99 -0
- package/dist-types/commands/PartialUpdateChannelCommand.d.ts +195 -0
- package/dist-types/commands/PartialUpdateMessageCommand.d.ts +261 -0
- package/dist-types/commands/PinChannelCommand.d.ts +87 -0
- package/dist-types/commands/PinMessageCommand.d.ts +57 -1
- package/dist-types/commands/QueryChannelsCommand.d.ts +167 -0
- package/dist-types/commands/RemoveChannelFromSectionCommand.d.ts +101 -0
- package/dist-types/commands/RenameSectionCommand.d.ts +98 -0
- package/dist-types/commands/SendGiphyCommand.d.ts +207 -0
- package/dist-types/commands/SendMessageCommand.d.ts +105 -8
- package/dist-types/commands/SendMessageReactionCommand.d.ts +193 -0
- package/dist-types/commands/SendSystemMessageCommand.d.ts +199 -0
- package/dist-types/commands/SendTypingStartCommand.d.ts +84 -0
- package/dist-types/commands/SendTypingStopCommand.d.ts +84 -0
- package/dist-types/commands/ShowChannelCommand.d.ts +84 -0
- package/dist-types/commands/UnmuteChannelCommand.d.ts +98 -0
- package/dist-types/commands/UnpinChannelCommand.d.ts +84 -0
- package/dist-types/commands/UnpinMessageCommand.d.ts +57 -1
- package/dist-types/commands/UpdateChannelCommand.d.ts +190 -0
- package/dist-types/commands/UpdateMessageCommand.d.ts +256 -0
- package/dist-types/commands/UploadFileCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +49 -3
- package/dist-types/models/models_0.d.ts +3256 -403
- package/dist-types/protocols/Aws_restJson1.d.ts +429 -15
- package/package.json +1 -1
- package/dist-types/commands/AddReactionCommand.d.ts +0 -137
- package/dist-types/commands/EditMessageCommand.d.ts +0 -151
- package/dist-types/commands/RemoveReactionCommand.d.ts +0 -137
package/dist-es/StreamService.js
CHANGED
|
@@ -1,30 +1,122 @@
|
|
|
1
1
|
import { StreamServiceClient, } from "./StreamServiceClient";
|
|
2
|
-
import {
|
|
2
|
+
import { AddChannelMemberCommand, } from "./commands/AddChannelMemberCommand";
|
|
3
|
+
import { AddChannelMembersCommand, } from "./commands/AddChannelMembersCommand";
|
|
4
|
+
import { AssignChannelCommand, } from "./commands/AssignChannelCommand";
|
|
5
|
+
import { CreateGroupChannelCommand, } from "./commands/CreateGroupChannelCommand";
|
|
6
|
+
import { CreateKiteChannelCommand, } from "./commands/CreateKiteChannelCommand";
|
|
7
|
+
import { CreateSectionCommand, } from "./commands/CreateSectionCommand";
|
|
8
|
+
import { DeleteChannelCommand, } from "./commands/DeleteChannelCommand";
|
|
9
|
+
import { DeleteChannelMemberCommand, } from "./commands/DeleteChannelMemberCommand";
|
|
3
10
|
import { DeleteMessageCommand, } from "./commands/DeleteMessageCommand";
|
|
4
|
-
import {
|
|
11
|
+
import { DeleteMessageReactionCommand, } from "./commands/DeleteMessageReactionCommand";
|
|
12
|
+
import { DeleteSectionCommand, } from "./commands/DeleteSectionCommand";
|
|
13
|
+
import { GetChannelCommand, } from "./commands/GetChannelCommand";
|
|
14
|
+
import { GetChannelMemberCommand, } from "./commands/GetChannelMemberCommand";
|
|
15
|
+
import { GetDirectChannelIdCommand, } from "./commands/GetDirectChannelIdCommand";
|
|
16
|
+
import { GetFilePresignedDownloadUrlCommand, } from "./commands/GetFilePresignedDownloadUrlCommand";
|
|
5
17
|
import { GetInboxCommand, } from "./commands/GetInboxCommand";
|
|
6
18
|
import { GetMessageCommand, } from "./commands/GetMessageCommand";
|
|
19
|
+
import { GetOrCreateDirectChannelCommand, } from "./commands/GetOrCreateDirectChannelCommand";
|
|
20
|
+
import { GetOrCreateSmsChannelCommand, } from "./commands/GetOrCreateSmsChannelCommand";
|
|
21
|
+
import { GetOrCreateTelephonyChannelCommand, } from "./commands/GetOrCreateTelephonyChannelCommand";
|
|
22
|
+
import { GetOrCreateWhatsAppChannelCommand, } from "./commands/GetOrCreateWhatsAppChannelCommand";
|
|
23
|
+
import { GetSmsChannelIdCommand, } from "./commands/GetSmsChannelIdCommand";
|
|
24
|
+
import { GetTelephonyChannelIdCommand, } from "./commands/GetTelephonyChannelIdCommand";
|
|
25
|
+
import { GetTokenCommand, } from "./commands/GetTokenCommand";
|
|
26
|
+
import { GetUploadedFileInfoCommand, } from "./commands/GetUploadedFileInfoCommand";
|
|
27
|
+
import { GetWhatsAppChannelIdCommand, } from "./commands/GetWhatsAppChannelIdCommand";
|
|
28
|
+
import { HideChannelCommand, } from "./commands/HideChannelCommand";
|
|
29
|
+
import { JoinChannelCommand, } from "./commands/JoinChannelCommand";
|
|
30
|
+
import { LeaveChannelCommand, } from "./commands/LeaveChannelCommand";
|
|
31
|
+
import { ListChannelMembersCommand, } from "./commands/ListChannelMembersCommand";
|
|
32
|
+
import { ListChannelMembersReadStatusCommand, } from "./commands/ListChannelMembersReadStatusCommand";
|
|
7
33
|
import { ListChannelsCommand, } from "./commands/ListChannelsCommand";
|
|
8
34
|
import { ListMentionsCommand, } from "./commands/ListMentionsCommand";
|
|
9
35
|
import { ListMessagesCommand, } from "./commands/ListMessagesCommand";
|
|
36
|
+
import { MarkReadCommand, } from "./commands/MarkReadCommand";
|
|
37
|
+
import { MarkUnreadCommand, } from "./commands/MarkUnreadCommand";
|
|
38
|
+
import { MoveChannelToSectionCommand, } from "./commands/MoveChannelToSectionCommand";
|
|
39
|
+
import { MuteChannelCommand, } from "./commands/MuteChannelCommand";
|
|
40
|
+
import { PartialUpdateChannelCommand, } from "./commands/PartialUpdateChannelCommand";
|
|
41
|
+
import { PartialUpdateMessageCommand, } from "./commands/PartialUpdateMessageCommand";
|
|
42
|
+
import { PinChannelCommand, } from "./commands/PinChannelCommand";
|
|
10
43
|
import { PinMessageCommand, } from "./commands/PinMessageCommand";
|
|
11
|
-
import {
|
|
44
|
+
import { QueryChannelsCommand, } from "./commands/QueryChannelsCommand";
|
|
45
|
+
import { RemoveChannelFromSectionCommand, } from "./commands/RemoveChannelFromSectionCommand";
|
|
46
|
+
import { RenameSectionCommand, } from "./commands/RenameSectionCommand";
|
|
47
|
+
import { SendGiphyCommand, } from "./commands/SendGiphyCommand";
|
|
12
48
|
import { SendMessageCommand, } from "./commands/SendMessageCommand";
|
|
49
|
+
import { SendMessageReactionCommand, } from "./commands/SendMessageReactionCommand";
|
|
50
|
+
import { SendSystemMessageCommand, } from "./commands/SendSystemMessageCommand";
|
|
51
|
+
import { SendTypingStartCommand, } from "./commands/SendTypingStartCommand";
|
|
52
|
+
import { SendTypingStopCommand, } from "./commands/SendTypingStopCommand";
|
|
53
|
+
import { ShowChannelCommand, } from "./commands/ShowChannelCommand";
|
|
54
|
+
import { UnmuteChannelCommand, } from "./commands/UnmuteChannelCommand";
|
|
55
|
+
import { UnpinChannelCommand, } from "./commands/UnpinChannelCommand";
|
|
13
56
|
import { UnpinMessageCommand, } from "./commands/UnpinMessageCommand";
|
|
57
|
+
import { UpdateChannelCommand, } from "./commands/UpdateChannelCommand";
|
|
58
|
+
import { UpdateMessageCommand, } from "./commands/UpdateMessageCommand";
|
|
59
|
+
import { UploadFileCommand, } from "./commands/UploadFileCommand";
|
|
14
60
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
15
61
|
const commands = {
|
|
16
|
-
|
|
62
|
+
AddChannelMemberCommand,
|
|
63
|
+
AddChannelMembersCommand,
|
|
64
|
+
AssignChannelCommand,
|
|
65
|
+
CreateGroupChannelCommand,
|
|
66
|
+
CreateKiteChannelCommand,
|
|
67
|
+
CreateSectionCommand,
|
|
68
|
+
DeleteChannelCommand,
|
|
69
|
+
DeleteChannelMemberCommand,
|
|
17
70
|
DeleteMessageCommand,
|
|
18
|
-
|
|
71
|
+
DeleteMessageReactionCommand,
|
|
72
|
+
DeleteSectionCommand,
|
|
73
|
+
GetChannelCommand,
|
|
74
|
+
GetChannelMemberCommand,
|
|
75
|
+
GetDirectChannelIdCommand,
|
|
76
|
+
GetFilePresignedDownloadUrlCommand,
|
|
19
77
|
GetInboxCommand,
|
|
20
78
|
GetMessageCommand,
|
|
79
|
+
GetOrCreateDirectChannelCommand,
|
|
80
|
+
GetOrCreateSmsChannelCommand,
|
|
81
|
+
GetOrCreateTelephonyChannelCommand,
|
|
82
|
+
GetOrCreateWhatsAppChannelCommand,
|
|
83
|
+
GetSmsChannelIdCommand,
|
|
84
|
+
GetTelephonyChannelIdCommand,
|
|
85
|
+
GetTokenCommand,
|
|
86
|
+
GetUploadedFileInfoCommand,
|
|
87
|
+
GetWhatsAppChannelIdCommand,
|
|
88
|
+
HideChannelCommand,
|
|
89
|
+
JoinChannelCommand,
|
|
90
|
+
LeaveChannelCommand,
|
|
91
|
+
ListChannelMembersCommand,
|
|
92
|
+
ListChannelMembersReadStatusCommand,
|
|
21
93
|
ListChannelsCommand,
|
|
22
94
|
ListMentionsCommand,
|
|
23
95
|
ListMessagesCommand,
|
|
96
|
+
MarkReadCommand,
|
|
97
|
+
MarkUnreadCommand,
|
|
98
|
+
MoveChannelToSectionCommand,
|
|
99
|
+
MuteChannelCommand,
|
|
100
|
+
PartialUpdateChannelCommand,
|
|
101
|
+
PartialUpdateMessageCommand,
|
|
102
|
+
PinChannelCommand,
|
|
24
103
|
PinMessageCommand,
|
|
25
|
-
|
|
104
|
+
QueryChannelsCommand,
|
|
105
|
+
RemoveChannelFromSectionCommand,
|
|
106
|
+
RenameSectionCommand,
|
|
107
|
+
SendGiphyCommand,
|
|
26
108
|
SendMessageCommand,
|
|
109
|
+
SendMessageReactionCommand,
|
|
110
|
+
SendSystemMessageCommand,
|
|
111
|
+
SendTypingStartCommand,
|
|
112
|
+
SendTypingStopCommand,
|
|
113
|
+
ShowChannelCommand,
|
|
114
|
+
UnmuteChannelCommand,
|
|
115
|
+
UnpinChannelCommand,
|
|
27
116
|
UnpinMessageCommand,
|
|
117
|
+
UpdateChannelCommand,
|
|
118
|
+
UpdateMessageCommand,
|
|
119
|
+
UploadFileCommand,
|
|
28
120
|
};
|
|
29
121
|
export class StreamService extends StreamServiceClient {
|
|
30
122
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_AddChannelMemberCommand, se_AddChannelMemberCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class AddChannelMemberCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "AddChannelMember", {})
|
|
12
|
+
.n("StreamServiceClient", "AddChannelMemberCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_AddChannelMemberCommand)
|
|
15
|
+
.de(de_AddChannelMemberCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_AddChannelMembersCommand, se_AddChannelMembersCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class AddChannelMembersCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "AddChannelMembers", {})
|
|
12
|
+
.n("StreamServiceClient", "AddChannelMembersCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_AddChannelMembersCommand)
|
|
15
|
+
.de(de_AddChannelMembersCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_AssignChannelCommand, se_AssignChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class AssignChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "AssignChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "AssignChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_AssignChannelCommand)
|
|
15
|
+
.de(de_AssignChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_CreateGroupChannelCommand, se_CreateGroupChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class CreateGroupChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "CreateGroupChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "CreateGroupChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_CreateGroupChannelCommand)
|
|
15
|
+
.de(de_CreateGroupChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_CreateKiteChannelCommand, se_CreateKiteChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class CreateKiteChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "CreateKiteChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "CreateKiteChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_CreateKiteChannelCommand)
|
|
15
|
+
.de(de_CreateKiteChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_CreateSectionCommand, se_CreateSectionCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class CreateSectionCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "CreateSection", {})
|
|
12
|
+
.n("StreamServiceClient", "CreateSectionCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_CreateSectionCommand)
|
|
15
|
+
.de(de_CreateSectionCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_DeleteChannelCommand, se_DeleteChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class DeleteChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "DeleteChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "DeleteChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_DeleteChannelCommand)
|
|
15
|
+
.de(de_DeleteChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_DeleteChannelMemberCommand, se_DeleteChannelMemberCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class DeleteChannelMemberCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "DeleteChannelMember", {})
|
|
12
|
+
.n("StreamServiceClient", "DeleteChannelMemberCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_DeleteChannelMemberCommand)
|
|
15
|
+
.de(de_DeleteChannelMemberCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_DeleteMessageReactionCommand, se_DeleteMessageReactionCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class DeleteMessageReactionCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "DeleteMessageReaction", {})
|
|
12
|
+
.n("StreamServiceClient", "DeleteMessageReactionCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_DeleteMessageReactionCommand)
|
|
15
|
+
.de(de_DeleteMessageReactionCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_DeleteSectionCommand, se_DeleteSectionCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class DeleteSectionCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "DeleteSection", {})
|
|
12
|
+
.n("StreamServiceClient", "DeleteSectionCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_DeleteSectionCommand)
|
|
15
|
+
.de(de_DeleteSectionCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetChannelCommand, se_GetChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "GetChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetChannelCommand)
|
|
15
|
+
.de(de_GetChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetChannelMemberCommand, se_GetChannelMemberCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetChannelMemberCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetChannelMember", {})
|
|
12
|
+
.n("StreamServiceClient", "GetChannelMemberCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetChannelMemberCommand)
|
|
15
|
+
.de(de_GetChannelMemberCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetDirectChannelIdCommand, se_GetDirectChannelIdCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetDirectChannelIdCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetDirectChannelId", {})
|
|
12
|
+
.n("StreamServiceClient", "GetDirectChannelIdCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetDirectChannelIdCommand)
|
|
15
|
+
.de(de_GetDirectChannelIdCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetFilePresignedDownloadUrlCommand, se_GetFilePresignedDownloadUrlCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetFilePresignedDownloadUrlCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetFilePresignedDownloadUrl", {})
|
|
12
|
+
.n("StreamServiceClient", "GetFilePresignedDownloadUrlCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetFilePresignedDownloadUrlCommand)
|
|
15
|
+
.de(de_GetFilePresignedDownloadUrlCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetOrCreateDirectChannelCommand, se_GetOrCreateDirectChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetOrCreateDirectChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetOrCreateDirectChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "GetOrCreateDirectChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetOrCreateDirectChannelCommand)
|
|
15
|
+
.de(de_GetOrCreateDirectChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetOrCreateSmsChannelCommand, se_GetOrCreateSmsChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetOrCreateSmsChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetOrCreateSmsChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "GetOrCreateSmsChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetOrCreateSmsChannelCommand)
|
|
15
|
+
.de(de_GetOrCreateSmsChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetOrCreateTelephonyChannelCommand, se_GetOrCreateTelephonyChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetOrCreateTelephonyChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetOrCreateTelephonyChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "GetOrCreateTelephonyChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetOrCreateTelephonyChannelCommand)
|
|
15
|
+
.de(de_GetOrCreateTelephonyChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetOrCreateWhatsAppChannelCommand, se_GetOrCreateWhatsAppChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetOrCreateWhatsAppChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetOrCreateWhatsAppChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "GetOrCreateWhatsAppChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetOrCreateWhatsAppChannelCommand)
|
|
15
|
+
.de(de_GetOrCreateWhatsAppChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetSmsChannelIdCommand, se_GetSmsChannelIdCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetSmsChannelIdCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetSmsChannelId", {})
|
|
12
|
+
.n("StreamServiceClient", "GetSmsChannelIdCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetSmsChannelIdCommand)
|
|
15
|
+
.de(de_GetSmsChannelIdCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetTelephonyChannelIdCommand, se_GetTelephonyChannelIdCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetTelephonyChannelIdCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetTelephonyChannelId", {})
|
|
12
|
+
.n("StreamServiceClient", "GetTelephonyChannelIdCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetTelephonyChannelIdCommand)
|
|
15
|
+
.de(de_GetTelephonyChannelIdCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetTokenCommand, se_GetTokenCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetTokenCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetToken", {})
|
|
12
|
+
.n("StreamServiceClient", "GetTokenCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetTokenCommand)
|
|
15
|
+
.de(de_GetTokenCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetUploadedFileInfoCommand, se_GetUploadedFileInfoCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetUploadedFileInfoCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetUploadedFileInfo", {})
|
|
12
|
+
.n("StreamServiceClient", "GetUploadedFileInfoCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetUploadedFileInfoCommand)
|
|
15
|
+
.de(de_GetUploadedFileInfoCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetWhatsAppChannelIdCommand, se_GetWhatsAppChannelIdCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetWhatsAppChannelIdCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "GetWhatsAppChannelId", {})
|
|
12
|
+
.n("StreamServiceClient", "GetWhatsAppChannelIdCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetWhatsAppChannelIdCommand)
|
|
15
|
+
.de(de_GetWhatsAppChannelIdCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { de_HideChannelCommand, se_HideChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
export { $Command };
|
|
5
|
-
export class
|
|
5
|
+
export class HideChannelCommand extends $Command.classBuilder()
|
|
6
6
|
.m(function (Command, cs, config, o) {
|
|
7
7
|
return [
|
|
8
8
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
9
|
];
|
|
10
10
|
})
|
|
11
|
-
.s("StreamService", "
|
|
12
|
-
.n("StreamServiceClient", "
|
|
11
|
+
.s("StreamService", "HideChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "HideChannelCommand")
|
|
13
13
|
.f(void 0, void 0)
|
|
14
|
-
.ser(
|
|
15
|
-
.de(
|
|
14
|
+
.ser(se_HideChannelCommand)
|
|
15
|
+
.de(de_HideChannelCommand)
|
|
16
16
|
.build() {
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { de_JoinChannelCommand, se_JoinChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
export { $Command };
|
|
5
|
-
export class
|
|
5
|
+
export class JoinChannelCommand extends $Command.classBuilder()
|
|
6
6
|
.m(function (Command, cs, config, o) {
|
|
7
7
|
return [
|
|
8
8
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
9
|
];
|
|
10
10
|
})
|
|
11
|
-
.s("StreamService", "
|
|
12
|
-
.n("StreamServiceClient", "
|
|
11
|
+
.s("StreamService", "JoinChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "JoinChannelCommand")
|
|
13
13
|
.f(void 0, void 0)
|
|
14
|
-
.ser(
|
|
15
|
-
.de(
|
|
14
|
+
.ser(se_JoinChannelCommand)
|
|
15
|
+
.de(de_JoinChannelCommand)
|
|
16
16
|
.build() {
|
|
17
17
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_LeaveChannelCommand, se_LeaveChannelCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class LeaveChannelCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "LeaveChannel", {})
|
|
12
|
+
.n("StreamServiceClient", "LeaveChannelCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_LeaveChannelCommand)
|
|
15
|
+
.de(de_LeaveChannelCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_ListChannelMembersCommand, se_ListChannelMembersCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class ListChannelMembersCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("StreamService", "ListChannelMembers", {})
|
|
12
|
+
.n("StreamServiceClient", "ListChannelMembersCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_ListChannelMembersCommand)
|
|
15
|
+
.de(de_ListChannelMembersCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|