@wildix/stream-client 0.0.15 → 4.0.1

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 (243) hide show
  1. package/dist-cjs/StreamService.js +3 -7
  2. package/dist-cjs/StreamServiceClient.js +34 -27
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/AddChannelMemberCommand.js +10 -11
  6. package/dist-cjs/commands/AddChannelMembersCommand.js +10 -11
  7. package/dist-cjs/commands/AssignChannelCommand.js +10 -11
  8. package/dist-cjs/commands/CreateGroupChannelCommand.js +10 -11
  9. package/dist-cjs/commands/CreateKiteChannelCommand.js +10 -11
  10. package/dist-cjs/commands/CreateSectionCommand.js +10 -11
  11. package/dist-cjs/commands/DeleteChannelCommand.js +10 -11
  12. package/dist-cjs/commands/DeleteChannelMemberCommand.js +10 -11
  13. package/dist-cjs/commands/DeleteMessageCommand.js +10 -11
  14. package/dist-cjs/commands/DeleteMessageReactionCommand.js +10 -11
  15. package/dist-cjs/commands/DeleteSectionCommand.js +10 -11
  16. package/dist-cjs/commands/GetChannelCommand.js +10 -11
  17. package/dist-cjs/commands/GetChannelMemberCommand.js +10 -11
  18. package/dist-cjs/commands/GetDirectChannelIdCommand.js +10 -11
  19. package/dist-cjs/commands/GetFilePresignedDownloadUrlCommand.js +10 -11
  20. package/dist-cjs/commands/GetInboxCommand.js +10 -11
  21. package/dist-cjs/commands/GetMessageCommand.js +10 -11
  22. package/dist-cjs/commands/GetOrCreateDirectChannelCommand.js +10 -11
  23. package/dist-cjs/commands/GetOrCreateSmsChannelCommand.js +10 -11
  24. package/dist-cjs/commands/GetOrCreateTelephonyChannelCommand.js +10 -11
  25. package/dist-cjs/commands/GetOrCreateWhatsAppChannelCommand.js +10 -11
  26. package/dist-cjs/commands/GetSmsChannelIdCommand.js +10 -11
  27. package/dist-cjs/commands/GetTelephonyChannelIdCommand.js +10 -11
  28. package/dist-cjs/commands/GetTokenCommand.js +10 -11
  29. package/dist-cjs/commands/GetUploadedFileInfoCommand.js +10 -11
  30. package/dist-cjs/commands/GetWhatsAppChannelIdCommand.js +10 -11
  31. package/dist-cjs/commands/HideChannelCommand.js +10 -11
  32. package/dist-cjs/commands/JoinChannelCommand.js +10 -11
  33. package/dist-cjs/commands/LeaveChannelCommand.js +10 -11
  34. package/dist-cjs/commands/ListChannelMembersCommand.js +10 -11
  35. package/dist-cjs/commands/ListChannelMembersReadStatusCommand.js +10 -11
  36. package/dist-cjs/commands/ListChannelsCommand.js +10 -11
  37. package/dist-cjs/commands/ListMentionsCommand.js +10 -11
  38. package/dist-cjs/commands/ListMessagesCommand.js +10 -11
  39. package/dist-cjs/commands/MarkReadCommand.js +10 -11
  40. package/dist-cjs/commands/MarkUnreadCommand.js +10 -11
  41. package/dist-cjs/commands/MoveChannelToSectionCommand.js +10 -11
  42. package/dist-cjs/commands/MuteChannelCommand.js +10 -11
  43. package/dist-cjs/commands/PartialUpdateChannelCommand.js +10 -11
  44. package/dist-cjs/commands/PartialUpdateMessageCommand.js +10 -11
  45. package/dist-cjs/commands/PinChannelCommand.js +10 -11
  46. package/dist-cjs/commands/PinMessageCommand.js +10 -11
  47. package/dist-cjs/commands/QueryChannelsCommand.js +10 -11
  48. package/dist-cjs/commands/RemoveChannelFromSectionCommand.js +10 -11
  49. package/dist-cjs/commands/RenameSectionCommand.js +10 -11
  50. package/dist-cjs/commands/SendGiphyCommand.js +10 -11
  51. package/dist-cjs/commands/SendMessageCommand.js +10 -11
  52. package/dist-cjs/commands/SendMessageReactionCommand.js +10 -11
  53. package/dist-cjs/commands/SendSystemMessageCommand.js +10 -11
  54. package/dist-cjs/commands/SendTypingStartCommand.js +10 -11
  55. package/dist-cjs/commands/SendTypingStopCommand.js +10 -11
  56. package/dist-cjs/commands/ShowChannelCommand.js +10 -11
  57. package/dist-cjs/commands/UnmuteChannelCommand.js +10 -11
  58. package/dist-cjs/commands/UnpinChannelCommand.js +10 -11
  59. package/dist-cjs/commands/UnpinMessageCommand.js +10 -11
  60. package/dist-cjs/commands/UpdateChannelCommand.js +10 -11
  61. package/dist-cjs/commands/UpdateMessageCommand.js +10 -11
  62. package/dist-cjs/commands/UploadFileCommand.js +10 -11
  63. package/dist-cjs/commands/index.js +0 -2
  64. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  65. package/dist-cjs/endpoint/bdd.js +28 -0
  66. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  67. package/dist-cjs/index.js +4 -1
  68. package/dist-cjs/models/StreamServiceServiceException.js +3 -3
  69. package/dist-cjs/models/enums.js +114 -0
  70. package/dist-cjs/models/errors.js +209 -0
  71. package/dist-cjs/models/models_0.js +0 -387
  72. package/dist-cjs/runtimeConfig.browser.js +11 -11
  73. package/dist-cjs/runtimeConfig.js +22 -18
  74. package/dist-cjs/runtimeConfig.shared.js +30 -10
  75. package/dist-cjs/runtimeExtensions.js +6 -5
  76. package/dist-cjs/schemas/schemas_0.js +1584 -0
  77. package/dist-es/StreamService.js +6 -10
  78. package/dist-es/StreamServiceClient.js +30 -23
  79. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  80. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  81. package/dist-es/commands/AddChannelMemberCommand.js +9 -10
  82. package/dist-es/commands/AddChannelMembersCommand.js +9 -10
  83. package/dist-es/commands/AssignChannelCommand.js +9 -10
  84. package/dist-es/commands/CreateGroupChannelCommand.js +9 -10
  85. package/dist-es/commands/CreateKiteChannelCommand.js +9 -10
  86. package/dist-es/commands/CreateSectionCommand.js +9 -10
  87. package/dist-es/commands/DeleteChannelCommand.js +9 -10
  88. package/dist-es/commands/DeleteChannelMemberCommand.js +9 -10
  89. package/dist-es/commands/DeleteMessageCommand.js +9 -10
  90. package/dist-es/commands/DeleteMessageReactionCommand.js +9 -10
  91. package/dist-es/commands/DeleteSectionCommand.js +9 -10
  92. package/dist-es/commands/GetChannelCommand.js +9 -10
  93. package/dist-es/commands/GetChannelMemberCommand.js +9 -10
  94. package/dist-es/commands/GetDirectChannelIdCommand.js +9 -10
  95. package/dist-es/commands/GetFilePresignedDownloadUrlCommand.js +9 -10
  96. package/dist-es/commands/GetInboxCommand.js +9 -10
  97. package/dist-es/commands/GetMessageCommand.js +9 -10
  98. package/dist-es/commands/GetOrCreateDirectChannelCommand.js +9 -10
  99. package/dist-es/commands/GetOrCreateSmsChannelCommand.js +9 -10
  100. package/dist-es/commands/GetOrCreateTelephonyChannelCommand.js +9 -10
  101. package/dist-es/commands/GetOrCreateWhatsAppChannelCommand.js +9 -10
  102. package/dist-es/commands/GetSmsChannelIdCommand.js +9 -10
  103. package/dist-es/commands/GetTelephonyChannelIdCommand.js +9 -10
  104. package/dist-es/commands/GetTokenCommand.js +9 -10
  105. package/dist-es/commands/GetUploadedFileInfoCommand.js +9 -10
  106. package/dist-es/commands/GetWhatsAppChannelIdCommand.js +9 -10
  107. package/dist-es/commands/HideChannelCommand.js +9 -10
  108. package/dist-es/commands/JoinChannelCommand.js +9 -10
  109. package/dist-es/commands/LeaveChannelCommand.js +9 -10
  110. package/dist-es/commands/ListChannelMembersCommand.js +9 -10
  111. package/dist-es/commands/ListChannelMembersReadStatusCommand.js +9 -10
  112. package/dist-es/commands/ListChannelsCommand.js +9 -10
  113. package/dist-es/commands/ListMentionsCommand.js +9 -10
  114. package/dist-es/commands/ListMessagesCommand.js +9 -10
  115. package/dist-es/commands/MarkReadCommand.js +9 -10
  116. package/dist-es/commands/MarkUnreadCommand.js +9 -10
  117. package/dist-es/commands/MoveChannelToSectionCommand.js +9 -10
  118. package/dist-es/commands/MuteChannelCommand.js +9 -10
  119. package/dist-es/commands/PartialUpdateChannelCommand.js +9 -10
  120. package/dist-es/commands/PartialUpdateMessageCommand.js +9 -10
  121. package/dist-es/commands/PinChannelCommand.js +9 -10
  122. package/dist-es/commands/PinMessageCommand.js +9 -10
  123. package/dist-es/commands/QueryChannelsCommand.js +9 -10
  124. package/dist-es/commands/RemoveChannelFromSectionCommand.js +9 -10
  125. package/dist-es/commands/RenameSectionCommand.js +9 -10
  126. package/dist-es/commands/SendGiphyCommand.js +9 -10
  127. package/dist-es/commands/SendMessageCommand.js +9 -10
  128. package/dist-es/commands/SendMessageReactionCommand.js +9 -10
  129. package/dist-es/commands/SendSystemMessageCommand.js +9 -10
  130. package/dist-es/commands/SendTypingStartCommand.js +9 -10
  131. package/dist-es/commands/SendTypingStopCommand.js +9 -10
  132. package/dist-es/commands/ShowChannelCommand.js +9 -10
  133. package/dist-es/commands/UnmuteChannelCommand.js +9 -10
  134. package/dist-es/commands/UnpinChannelCommand.js +9 -10
  135. package/dist-es/commands/UnpinMessageCommand.js +9 -10
  136. package/dist-es/commands/UpdateChannelCommand.js +9 -10
  137. package/dist-es/commands/UpdateMessageCommand.js +9 -10
  138. package/dist-es/commands/UploadFileCommand.js +9 -10
  139. package/dist-es/commands/index.js +0 -2
  140. package/dist-es/endpoint/EndpointParameters.js +14 -0
  141. package/dist-es/endpoint/bdd.js +25 -0
  142. package/dist-es/endpoint/endpointResolver.js +12 -0
  143. package/dist-es/index.js +4 -1
  144. package/dist-es/models/StreamServiceServiceException.js +1 -1
  145. package/dist-es/models/enums.js +111 -0
  146. package/dist-es/models/errors.js +191 -0
  147. package/dist-es/models/models_0.js +1 -371
  148. package/dist-es/runtimeConfig.browser.js +7 -7
  149. package/dist-es/runtimeConfig.js +17 -13
  150. package/dist-es/runtimeConfig.shared.js +24 -4
  151. package/dist-es/runtimeExtensions.js +6 -5
  152. package/dist-es/schemas/schemas_0.js +1577 -0
  153. package/dist-types/StreamService.d.ts +59 -75
  154. package/dist-types/StreamServiceClient.d.ts +90 -76
  155. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  156. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  157. package/dist-types/commands/AddChannelMemberCommand.d.ts +11 -7
  158. package/dist-types/commands/AddChannelMembersCommand.d.ts +11 -7
  159. package/dist-types/commands/AssignChannelCommand.d.ts +11 -7
  160. package/dist-types/commands/CreateGroupChannelCommand.d.ts +11 -7
  161. package/dist-types/commands/CreateKiteChannelCommand.d.ts +11 -7
  162. package/dist-types/commands/CreateSectionCommand.d.ts +11 -7
  163. package/dist-types/commands/DeleteChannelCommand.d.ts +11 -7
  164. package/dist-types/commands/DeleteChannelMemberCommand.d.ts +11 -7
  165. package/dist-types/commands/DeleteMessageCommand.d.ts +11 -7
  166. package/dist-types/commands/DeleteMessageReactionCommand.d.ts +11 -7
  167. package/dist-types/commands/DeleteSectionCommand.d.ts +11 -7
  168. package/dist-types/commands/GetChannelCommand.d.ts +11 -7
  169. package/dist-types/commands/GetChannelMemberCommand.d.ts +11 -7
  170. package/dist-types/commands/GetDirectChannelIdCommand.d.ts +11 -7
  171. package/dist-types/commands/GetFilePresignedDownloadUrlCommand.d.ts +11 -7
  172. package/dist-types/commands/GetInboxCommand.d.ts +11 -7
  173. package/dist-types/commands/GetMessageCommand.d.ts +11 -7
  174. package/dist-types/commands/GetOrCreateDirectChannelCommand.d.ts +11 -7
  175. package/dist-types/commands/GetOrCreateSmsChannelCommand.d.ts +11 -7
  176. package/dist-types/commands/GetOrCreateTelephonyChannelCommand.d.ts +11 -7
  177. package/dist-types/commands/GetOrCreateWhatsAppChannelCommand.d.ts +11 -7
  178. package/dist-types/commands/GetSmsChannelIdCommand.d.ts +11 -7
  179. package/dist-types/commands/GetTelephonyChannelIdCommand.d.ts +11 -7
  180. package/dist-types/commands/GetTokenCommand.d.ts +11 -7
  181. package/dist-types/commands/GetUploadedFileInfoCommand.d.ts +11 -7
  182. package/dist-types/commands/GetWhatsAppChannelIdCommand.d.ts +11 -7
  183. package/dist-types/commands/HideChannelCommand.d.ts +11 -7
  184. package/dist-types/commands/JoinChannelCommand.d.ts +11 -7
  185. package/dist-types/commands/LeaveChannelCommand.d.ts +11 -7
  186. package/dist-types/commands/ListChannelMembersCommand.d.ts +11 -7
  187. package/dist-types/commands/ListChannelMembersReadStatusCommand.d.ts +11 -7
  188. package/dist-types/commands/ListChannelsCommand.d.ts +11 -7
  189. package/dist-types/commands/ListMentionsCommand.d.ts +11 -7
  190. package/dist-types/commands/ListMessagesCommand.d.ts +11 -7
  191. package/dist-types/commands/MarkReadCommand.d.ts +11 -7
  192. package/dist-types/commands/MarkUnreadCommand.d.ts +11 -7
  193. package/dist-types/commands/MoveChannelToSectionCommand.d.ts +11 -7
  194. package/dist-types/commands/MuteChannelCommand.d.ts +11 -7
  195. package/dist-types/commands/PartialUpdateChannelCommand.d.ts +11 -7
  196. package/dist-types/commands/PartialUpdateMessageCommand.d.ts +11 -7
  197. package/dist-types/commands/PinChannelCommand.d.ts +11 -7
  198. package/dist-types/commands/PinMessageCommand.d.ts +11 -7
  199. package/dist-types/commands/QueryChannelsCommand.d.ts +11 -7
  200. package/dist-types/commands/RemoveChannelFromSectionCommand.d.ts +11 -7
  201. package/dist-types/commands/RenameSectionCommand.d.ts +11 -7
  202. package/dist-types/commands/SendGiphyCommand.d.ts +11 -7
  203. package/dist-types/commands/SendMessageCommand.d.ts +11 -7
  204. package/dist-types/commands/SendMessageReactionCommand.d.ts +11 -7
  205. package/dist-types/commands/SendSystemMessageCommand.d.ts +11 -7
  206. package/dist-types/commands/SendTypingStartCommand.d.ts +11 -7
  207. package/dist-types/commands/SendTypingStopCommand.d.ts +11 -7
  208. package/dist-types/commands/ShowChannelCommand.d.ts +11 -7
  209. package/dist-types/commands/UnmuteChannelCommand.d.ts +11 -7
  210. package/dist-types/commands/UnpinChannelCommand.d.ts +11 -7
  211. package/dist-types/commands/UnpinMessageCommand.d.ts +11 -7
  212. package/dist-types/commands/UpdateChannelCommand.d.ts +11 -7
  213. package/dist-types/commands/UpdateMessageCommand.d.ts +11 -7
  214. package/dist-types/commands/UploadFileCommand.d.ts +11 -7
  215. package/dist-types/commands/index.d.ts +0 -2
  216. package/dist-types/endpoint/EndpointParameters.d.ts +48 -0
  217. package/dist-types/endpoint/bdd.d.ts +2 -0
  218. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  219. package/dist-types/extensionConfiguration.d.ts +4 -3
  220. package/dist-types/index.d.ts +5 -1
  221. package/dist-types/models/StreamServiceServiceException.d.ts +1 -1
  222. package/dist-types/models/enums.d.ts +286 -0
  223. package/dist-types/models/errors.d.ts +189 -0
  224. package/dist-types/models/models_0.d.ts +69 -713
  225. package/dist-types/runtimeConfig.browser.d.ts +37 -18
  226. package/dist-types/runtimeConfig.d.ts +36 -17
  227. package/dist-types/runtimeConfig.native.d.ts +38 -19
  228. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  229. package/dist-types/runtimeExtensions.d.ts +1 -1
  230. package/dist-types/schemas/schemas_0.d.ts +243 -0
  231. package/package.json +14 -40
  232. package/dist-cjs/commands/SearchChannelsCommand.js +0 -21
  233. package/dist-cjs/commands/SearchMessagesCommand.js +0 -21
  234. package/dist-cjs/models/index.js +0 -4
  235. package/dist-cjs/protocols/Aws_restJson1.js +0 -2474
  236. package/dist-es/commands/SearchChannelsCommand.js +0 -17
  237. package/dist-es/commands/SearchMessagesCommand.js +0 -17
  238. package/dist-es/models/index.js +0 -1
  239. package/dist-es/protocols/Aws_restJson1.js +0 -2349
  240. package/dist-types/commands/SearchChannelsCommand.d.ts +0 -163
  241. package/dist-types/commands/SearchMessagesCommand.d.ts +0 -211
  242. package/dist-types/models/index.d.ts +0 -1
  243. package/dist-types/protocols/Aws_restJson1.d.ts +0 -542
@@ -1,542 +0,0 @@
1
- import { AddChannelMemberCommandInput, AddChannelMemberCommandOutput } from "../commands/AddChannelMemberCommand";
2
- import { AddChannelMembersCommandInput, AddChannelMembersCommandOutput } from "../commands/AddChannelMembersCommand";
3
- import { AssignChannelCommandInput, AssignChannelCommandOutput } from "../commands/AssignChannelCommand";
4
- import { CreateGroupChannelCommandInput, CreateGroupChannelCommandOutput } from "../commands/CreateGroupChannelCommand";
5
- import { CreateKiteChannelCommandInput, CreateKiteChannelCommandOutput } from "../commands/CreateKiteChannelCommand";
6
- import { CreateSectionCommandInput, CreateSectionCommandOutput } from "../commands/CreateSectionCommand";
7
- import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
8
- import { DeleteChannelMemberCommandInput, DeleteChannelMemberCommandOutput } from "../commands/DeleteChannelMemberCommand";
9
- import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "../commands/DeleteMessageCommand";
10
- import { DeleteMessageReactionCommandInput, DeleteMessageReactionCommandOutput } from "../commands/DeleteMessageReactionCommand";
11
- import { DeleteSectionCommandInput, DeleteSectionCommandOutput } from "../commands/DeleteSectionCommand";
12
- import { GetChannelCommandInput, GetChannelCommandOutput } from "../commands/GetChannelCommand";
13
- import { GetChannelMemberCommandInput, GetChannelMemberCommandOutput } from "../commands/GetChannelMemberCommand";
14
- import { GetDirectChannelIdCommandInput, GetDirectChannelIdCommandOutput } from "../commands/GetDirectChannelIdCommand";
15
- import { GetFilePresignedDownloadUrlCommandInput, GetFilePresignedDownloadUrlCommandOutput } from "../commands/GetFilePresignedDownloadUrlCommand";
16
- import { GetInboxCommandInput, GetInboxCommandOutput } from "../commands/GetInboxCommand";
17
- import { GetMessageCommandInput, GetMessageCommandOutput } from "../commands/GetMessageCommand";
18
- import { GetOrCreateDirectChannelCommandInput, GetOrCreateDirectChannelCommandOutput } from "../commands/GetOrCreateDirectChannelCommand";
19
- import { GetOrCreateSmsChannelCommandInput, GetOrCreateSmsChannelCommandOutput } from "../commands/GetOrCreateSmsChannelCommand";
20
- import { GetOrCreateTelephonyChannelCommandInput, GetOrCreateTelephonyChannelCommandOutput } from "../commands/GetOrCreateTelephonyChannelCommand";
21
- import { GetOrCreateWhatsAppChannelCommandInput, GetOrCreateWhatsAppChannelCommandOutput } from "../commands/GetOrCreateWhatsAppChannelCommand";
22
- import { GetSmsChannelIdCommandInput, GetSmsChannelIdCommandOutput } from "../commands/GetSmsChannelIdCommand";
23
- import { GetTelephonyChannelIdCommandInput, GetTelephonyChannelIdCommandOutput } from "../commands/GetTelephonyChannelIdCommand";
24
- import { GetTokenCommandInput, GetTokenCommandOutput } from "../commands/GetTokenCommand";
25
- import { GetUploadedFileInfoCommandInput, GetUploadedFileInfoCommandOutput } from "../commands/GetUploadedFileInfoCommand";
26
- import { GetWhatsAppChannelIdCommandInput, GetWhatsAppChannelIdCommandOutput } from "../commands/GetWhatsAppChannelIdCommand";
27
- import { HideChannelCommandInput, HideChannelCommandOutput } from "../commands/HideChannelCommand";
28
- import { JoinChannelCommandInput, JoinChannelCommandOutput } from "../commands/JoinChannelCommand";
29
- import { LeaveChannelCommandInput, LeaveChannelCommandOutput } from "../commands/LeaveChannelCommand";
30
- import { ListChannelMembersCommandInput, ListChannelMembersCommandOutput } from "../commands/ListChannelMembersCommand";
31
- import { ListChannelMembersReadStatusCommandInput, ListChannelMembersReadStatusCommandOutput } from "../commands/ListChannelMembersReadStatusCommand";
32
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
33
- import { ListMentionsCommandInput, ListMentionsCommandOutput } from "../commands/ListMentionsCommand";
34
- import { ListMessagesCommandInput, ListMessagesCommandOutput } from "../commands/ListMessagesCommand";
35
- import { MarkReadCommandInput, MarkReadCommandOutput } from "../commands/MarkReadCommand";
36
- import { MarkUnreadCommandInput, MarkUnreadCommandOutput } from "../commands/MarkUnreadCommand";
37
- import { MoveChannelToSectionCommandInput, MoveChannelToSectionCommandOutput } from "../commands/MoveChannelToSectionCommand";
38
- import { MuteChannelCommandInput, MuteChannelCommandOutput } from "../commands/MuteChannelCommand";
39
- import { PartialUpdateChannelCommandInput, PartialUpdateChannelCommandOutput } from "../commands/PartialUpdateChannelCommand";
40
- import { PartialUpdateMessageCommandInput, PartialUpdateMessageCommandOutput } from "../commands/PartialUpdateMessageCommand";
41
- import { PinChannelCommandInput, PinChannelCommandOutput } from "../commands/PinChannelCommand";
42
- import { PinMessageCommandInput, PinMessageCommandOutput } from "../commands/PinMessageCommand";
43
- import { QueryChannelsCommandInput, QueryChannelsCommandOutput } from "../commands/QueryChannelsCommand";
44
- import { RemoveChannelFromSectionCommandInput, RemoveChannelFromSectionCommandOutput } from "../commands/RemoveChannelFromSectionCommand";
45
- import { RenameSectionCommandInput, RenameSectionCommandOutput } from "../commands/RenameSectionCommand";
46
- import { SearchChannelsCommandInput, SearchChannelsCommandOutput } from "../commands/SearchChannelsCommand";
47
- import { SearchMessagesCommandInput, SearchMessagesCommandOutput } from "../commands/SearchMessagesCommand";
48
- import { SendGiphyCommandInput, SendGiphyCommandOutput } from "../commands/SendGiphyCommand";
49
- import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/SendMessageCommand";
50
- import { SendMessageReactionCommandInput, SendMessageReactionCommandOutput } from "../commands/SendMessageReactionCommand";
51
- import { SendSystemMessageCommandInput, SendSystemMessageCommandOutput } from "../commands/SendSystemMessageCommand";
52
- import { SendTypingStartCommandInput, SendTypingStartCommandOutput } from "../commands/SendTypingStartCommand";
53
- import { SendTypingStopCommandInput, SendTypingStopCommandOutput } from "../commands/SendTypingStopCommand";
54
- import { ShowChannelCommandInput, ShowChannelCommandOutput } from "../commands/ShowChannelCommand";
55
- import { UnmuteChannelCommandInput, UnmuteChannelCommandOutput } from "../commands/UnmuteChannelCommand";
56
- import { UnpinChannelCommandInput, UnpinChannelCommandOutput } from "../commands/UnpinChannelCommand";
57
- import { UnpinMessageCommandInput, UnpinMessageCommandOutput } from "../commands/UnpinMessageCommand";
58
- import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
59
- import { UpdateMessageCommandInput, UpdateMessageCommandOutput } from "../commands/UpdateMessageCommand";
60
- import { UploadFileCommandInput, UploadFileCommandOutput } from "../commands/UploadFileCommand";
61
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
62
- import { SerdeContext as __SerdeContext } from "@smithy/types";
63
- /**
64
- * serializeAws_restJson1AddChannelMemberCommand
65
- */
66
- export declare const se_AddChannelMemberCommand: (input: AddChannelMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
- /**
68
- * serializeAws_restJson1AddChannelMembersCommand
69
- */
70
- export declare const se_AddChannelMembersCommand: (input: AddChannelMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
- /**
72
- * serializeAws_restJson1AssignChannelCommand
73
- */
74
- export declare const se_AssignChannelCommand: (input: AssignChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
- /**
76
- * serializeAws_restJson1CreateGroupChannelCommand
77
- */
78
- export declare const se_CreateGroupChannelCommand: (input: CreateGroupChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
- /**
80
- * serializeAws_restJson1CreateKiteChannelCommand
81
- */
82
- export declare const se_CreateKiteChannelCommand: (input: CreateKiteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
- /**
84
- * serializeAws_restJson1CreateSectionCommand
85
- */
86
- export declare const se_CreateSectionCommand: (input: CreateSectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
- /**
88
- * serializeAws_restJson1DeleteChannelCommand
89
- */
90
- export declare const se_DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
- /**
92
- * serializeAws_restJson1DeleteChannelMemberCommand
93
- */
94
- export declare const se_DeleteChannelMemberCommand: (input: DeleteChannelMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
- /**
96
- * serializeAws_restJson1DeleteMessageCommand
97
- */
98
- export declare const se_DeleteMessageCommand: (input: DeleteMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
- /**
100
- * serializeAws_restJson1DeleteMessageReactionCommand
101
- */
102
- export declare const se_DeleteMessageReactionCommand: (input: DeleteMessageReactionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
- /**
104
- * serializeAws_restJson1DeleteSectionCommand
105
- */
106
- export declare const se_DeleteSectionCommand: (input: DeleteSectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
- /**
108
- * serializeAws_restJson1GetChannelCommand
109
- */
110
- export declare const se_GetChannelCommand: (input: GetChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
- /**
112
- * serializeAws_restJson1GetChannelMemberCommand
113
- */
114
- export declare const se_GetChannelMemberCommand: (input: GetChannelMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
- /**
116
- * serializeAws_restJson1GetDirectChannelIdCommand
117
- */
118
- export declare const se_GetDirectChannelIdCommand: (input: GetDirectChannelIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
- /**
120
- * serializeAws_restJson1GetFilePresignedDownloadUrlCommand
121
- */
122
- export declare const se_GetFilePresignedDownloadUrlCommand: (input: GetFilePresignedDownloadUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
- /**
124
- * serializeAws_restJson1GetInboxCommand
125
- */
126
- export declare const se_GetInboxCommand: (input: GetInboxCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
- /**
128
- * serializeAws_restJson1GetMessageCommand
129
- */
130
- export declare const se_GetMessageCommand: (input: GetMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
131
- /**
132
- * serializeAws_restJson1GetOrCreateDirectChannelCommand
133
- */
134
- export declare const se_GetOrCreateDirectChannelCommand: (input: GetOrCreateDirectChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
135
- /**
136
- * serializeAws_restJson1GetOrCreateSmsChannelCommand
137
- */
138
- export declare const se_GetOrCreateSmsChannelCommand: (input: GetOrCreateSmsChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
139
- /**
140
- * serializeAws_restJson1GetOrCreateTelephonyChannelCommand
141
- */
142
- export declare const se_GetOrCreateTelephonyChannelCommand: (input: GetOrCreateTelephonyChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
- /**
144
- * serializeAws_restJson1GetOrCreateWhatsAppChannelCommand
145
- */
146
- export declare const se_GetOrCreateWhatsAppChannelCommand: (input: GetOrCreateWhatsAppChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
147
- /**
148
- * serializeAws_restJson1GetSmsChannelIdCommand
149
- */
150
- export declare const se_GetSmsChannelIdCommand: (input: GetSmsChannelIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
151
- /**
152
- * serializeAws_restJson1GetTelephonyChannelIdCommand
153
- */
154
- export declare const se_GetTelephonyChannelIdCommand: (input: GetTelephonyChannelIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
155
- /**
156
- * serializeAws_restJson1GetTokenCommand
157
- */
158
- export declare const se_GetTokenCommand: (input: GetTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
159
- /**
160
- * serializeAws_restJson1GetUploadedFileInfoCommand
161
- */
162
- export declare const se_GetUploadedFileInfoCommand: (input: GetUploadedFileInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
163
- /**
164
- * serializeAws_restJson1GetWhatsAppChannelIdCommand
165
- */
166
- export declare const se_GetWhatsAppChannelIdCommand: (input: GetWhatsAppChannelIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
167
- /**
168
- * serializeAws_restJson1HideChannelCommand
169
- */
170
- export declare const se_HideChannelCommand: (input: HideChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
171
- /**
172
- * serializeAws_restJson1JoinChannelCommand
173
- */
174
- export declare const se_JoinChannelCommand: (input: JoinChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
175
- /**
176
- * serializeAws_restJson1LeaveChannelCommand
177
- */
178
- export declare const se_LeaveChannelCommand: (input: LeaveChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
179
- /**
180
- * serializeAws_restJson1ListChannelMembersCommand
181
- */
182
- export declare const se_ListChannelMembersCommand: (input: ListChannelMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
183
- /**
184
- * serializeAws_restJson1ListChannelMembersReadStatusCommand
185
- */
186
- export declare const se_ListChannelMembersReadStatusCommand: (input: ListChannelMembersReadStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
187
- /**
188
- * serializeAws_restJson1ListChannelsCommand
189
- */
190
- export declare const se_ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
191
- /**
192
- * serializeAws_restJson1ListMentionsCommand
193
- */
194
- export declare const se_ListMentionsCommand: (input: ListMentionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
195
- /**
196
- * serializeAws_restJson1ListMessagesCommand
197
- */
198
- export declare const se_ListMessagesCommand: (input: ListMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
199
- /**
200
- * serializeAws_restJson1MarkReadCommand
201
- */
202
- export declare const se_MarkReadCommand: (input: MarkReadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
203
- /**
204
- * serializeAws_restJson1MarkUnreadCommand
205
- */
206
- export declare const se_MarkUnreadCommand: (input: MarkUnreadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
207
- /**
208
- * serializeAws_restJson1MoveChannelToSectionCommand
209
- */
210
- export declare const se_MoveChannelToSectionCommand: (input: MoveChannelToSectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
211
- /**
212
- * serializeAws_restJson1MuteChannelCommand
213
- */
214
- export declare const se_MuteChannelCommand: (input: MuteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
215
- /**
216
- * serializeAws_restJson1PartialUpdateChannelCommand
217
- */
218
- export declare const se_PartialUpdateChannelCommand: (input: PartialUpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
219
- /**
220
- * serializeAws_restJson1PartialUpdateMessageCommand
221
- */
222
- export declare const se_PartialUpdateMessageCommand: (input: PartialUpdateMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
223
- /**
224
- * serializeAws_restJson1PinChannelCommand
225
- */
226
- export declare const se_PinChannelCommand: (input: PinChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
227
- /**
228
- * serializeAws_restJson1PinMessageCommand
229
- */
230
- export declare const se_PinMessageCommand: (input: PinMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
231
- /**
232
- * serializeAws_restJson1QueryChannelsCommand
233
- */
234
- export declare const se_QueryChannelsCommand: (input: QueryChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
235
- /**
236
- * serializeAws_restJson1RemoveChannelFromSectionCommand
237
- */
238
- export declare const se_RemoveChannelFromSectionCommand: (input: RemoveChannelFromSectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
239
- /**
240
- * serializeAws_restJson1RenameSectionCommand
241
- */
242
- export declare const se_RenameSectionCommand: (input: RenameSectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
243
- /**
244
- * serializeAws_restJson1SearchChannelsCommand
245
- */
246
- export declare const se_SearchChannelsCommand: (input: SearchChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
247
- /**
248
- * serializeAws_restJson1SearchMessagesCommand
249
- */
250
- export declare const se_SearchMessagesCommand: (input: SearchMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
251
- /**
252
- * serializeAws_restJson1SendGiphyCommand
253
- */
254
- export declare const se_SendGiphyCommand: (input: SendGiphyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
255
- /**
256
- * serializeAws_restJson1SendMessageCommand
257
- */
258
- export declare const se_SendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
259
- /**
260
- * serializeAws_restJson1SendMessageReactionCommand
261
- */
262
- export declare const se_SendMessageReactionCommand: (input: SendMessageReactionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
263
- /**
264
- * serializeAws_restJson1SendSystemMessageCommand
265
- */
266
- export declare const se_SendSystemMessageCommand: (input: SendSystemMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
267
- /**
268
- * serializeAws_restJson1SendTypingStartCommand
269
- */
270
- export declare const se_SendTypingStartCommand: (input: SendTypingStartCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
271
- /**
272
- * serializeAws_restJson1SendTypingStopCommand
273
- */
274
- export declare const se_SendTypingStopCommand: (input: SendTypingStopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
275
- /**
276
- * serializeAws_restJson1ShowChannelCommand
277
- */
278
- export declare const se_ShowChannelCommand: (input: ShowChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
279
- /**
280
- * serializeAws_restJson1UnmuteChannelCommand
281
- */
282
- export declare const se_UnmuteChannelCommand: (input: UnmuteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
283
- /**
284
- * serializeAws_restJson1UnpinChannelCommand
285
- */
286
- export declare const se_UnpinChannelCommand: (input: UnpinChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
287
- /**
288
- * serializeAws_restJson1UnpinMessageCommand
289
- */
290
- export declare const se_UnpinMessageCommand: (input: UnpinMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
291
- /**
292
- * serializeAws_restJson1UpdateChannelCommand
293
- */
294
- export declare const se_UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
295
- /**
296
- * serializeAws_restJson1UpdateMessageCommand
297
- */
298
- export declare const se_UpdateMessageCommand: (input: UpdateMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
299
- /**
300
- * serializeAws_restJson1UploadFileCommand
301
- */
302
- export declare const se_UploadFileCommand: (input: UploadFileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
303
- /**
304
- * deserializeAws_restJson1AddChannelMemberCommand
305
- */
306
- export declare const de_AddChannelMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddChannelMemberCommandOutput>;
307
- /**
308
- * deserializeAws_restJson1AddChannelMembersCommand
309
- */
310
- export declare const de_AddChannelMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddChannelMembersCommandOutput>;
311
- /**
312
- * deserializeAws_restJson1AssignChannelCommand
313
- */
314
- export declare const de_AssignChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssignChannelCommandOutput>;
315
- /**
316
- * deserializeAws_restJson1CreateGroupChannelCommand
317
- */
318
- export declare const de_CreateGroupChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupChannelCommandOutput>;
319
- /**
320
- * deserializeAws_restJson1CreateKiteChannelCommand
321
- */
322
- export declare const de_CreateKiteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKiteChannelCommandOutput>;
323
- /**
324
- * deserializeAws_restJson1CreateSectionCommand
325
- */
326
- export declare const de_CreateSectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSectionCommandOutput>;
327
- /**
328
- * deserializeAws_restJson1DeleteChannelCommand
329
- */
330
- export declare const de_DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
331
- /**
332
- * deserializeAws_restJson1DeleteChannelMemberCommand
333
- */
334
- export declare const de_DeleteChannelMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelMemberCommandOutput>;
335
- /**
336
- * deserializeAws_restJson1DeleteMessageCommand
337
- */
338
- export declare const de_DeleteMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageCommandOutput>;
339
- /**
340
- * deserializeAws_restJson1DeleteMessageReactionCommand
341
- */
342
- export declare const de_DeleteMessageReactionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageReactionCommandOutput>;
343
- /**
344
- * deserializeAws_restJson1DeleteSectionCommand
345
- */
346
- export declare const de_DeleteSectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSectionCommandOutput>;
347
- /**
348
- * deserializeAws_restJson1GetChannelCommand
349
- */
350
- export declare const de_GetChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelCommandOutput>;
351
- /**
352
- * deserializeAws_restJson1GetChannelMemberCommand
353
- */
354
- export declare const de_GetChannelMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelMemberCommandOutput>;
355
- /**
356
- * deserializeAws_restJson1GetDirectChannelIdCommand
357
- */
358
- export declare const de_GetDirectChannelIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDirectChannelIdCommandOutput>;
359
- /**
360
- * deserializeAws_restJson1GetFilePresignedDownloadUrlCommand
361
- */
362
- export declare const de_GetFilePresignedDownloadUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFilePresignedDownloadUrlCommandOutput>;
363
- /**
364
- * deserializeAws_restJson1GetInboxCommand
365
- */
366
- export declare const de_GetInboxCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInboxCommandOutput>;
367
- /**
368
- * deserializeAws_restJson1GetMessageCommand
369
- */
370
- export declare const de_GetMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMessageCommandOutput>;
371
- /**
372
- * deserializeAws_restJson1GetOrCreateDirectChannelCommand
373
- */
374
- export declare const de_GetOrCreateDirectChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrCreateDirectChannelCommandOutput>;
375
- /**
376
- * deserializeAws_restJson1GetOrCreateSmsChannelCommand
377
- */
378
- export declare const de_GetOrCreateSmsChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrCreateSmsChannelCommandOutput>;
379
- /**
380
- * deserializeAws_restJson1GetOrCreateTelephonyChannelCommand
381
- */
382
- export declare const de_GetOrCreateTelephonyChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrCreateTelephonyChannelCommandOutput>;
383
- /**
384
- * deserializeAws_restJson1GetOrCreateWhatsAppChannelCommand
385
- */
386
- export declare const de_GetOrCreateWhatsAppChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrCreateWhatsAppChannelCommandOutput>;
387
- /**
388
- * deserializeAws_restJson1GetSmsChannelIdCommand
389
- */
390
- export declare const de_GetSmsChannelIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSmsChannelIdCommandOutput>;
391
- /**
392
- * deserializeAws_restJson1GetTelephonyChannelIdCommand
393
- */
394
- export declare const de_GetTelephonyChannelIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTelephonyChannelIdCommandOutput>;
395
- /**
396
- * deserializeAws_restJson1GetTokenCommand
397
- */
398
- export declare const de_GetTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTokenCommandOutput>;
399
- /**
400
- * deserializeAws_restJson1GetUploadedFileInfoCommand
401
- */
402
- export declare const de_GetUploadedFileInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUploadedFileInfoCommandOutput>;
403
- /**
404
- * deserializeAws_restJson1GetWhatsAppChannelIdCommand
405
- */
406
- export declare const de_GetWhatsAppChannelIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWhatsAppChannelIdCommandOutput>;
407
- /**
408
- * deserializeAws_restJson1HideChannelCommand
409
- */
410
- export declare const de_HideChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<HideChannelCommandOutput>;
411
- /**
412
- * deserializeAws_restJson1JoinChannelCommand
413
- */
414
- export declare const de_JoinChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<JoinChannelCommandOutput>;
415
- /**
416
- * deserializeAws_restJson1LeaveChannelCommand
417
- */
418
- export declare const de_LeaveChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<LeaveChannelCommandOutput>;
419
- /**
420
- * deserializeAws_restJson1ListChannelMembersCommand
421
- */
422
- export declare const de_ListChannelMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelMembersCommandOutput>;
423
- /**
424
- * deserializeAws_restJson1ListChannelMembersReadStatusCommand
425
- */
426
- export declare const de_ListChannelMembersReadStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelMembersReadStatusCommandOutput>;
427
- /**
428
- * deserializeAws_restJson1ListChannelsCommand
429
- */
430
- export declare const de_ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
431
- /**
432
- * deserializeAws_restJson1ListMentionsCommand
433
- */
434
- export declare const de_ListMentionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMentionsCommandOutput>;
435
- /**
436
- * deserializeAws_restJson1ListMessagesCommand
437
- */
438
- export declare const de_ListMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMessagesCommandOutput>;
439
- /**
440
- * deserializeAws_restJson1MarkReadCommand
441
- */
442
- export declare const de_MarkReadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MarkReadCommandOutput>;
443
- /**
444
- * deserializeAws_restJson1MarkUnreadCommand
445
- */
446
- export declare const de_MarkUnreadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MarkUnreadCommandOutput>;
447
- /**
448
- * deserializeAws_restJson1MoveChannelToSectionCommand
449
- */
450
- export declare const de_MoveChannelToSectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MoveChannelToSectionCommandOutput>;
451
- /**
452
- * deserializeAws_restJson1MuteChannelCommand
453
- */
454
- export declare const de_MuteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MuteChannelCommandOutput>;
455
- /**
456
- * deserializeAws_restJson1PartialUpdateChannelCommand
457
- */
458
- export declare const de_PartialUpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PartialUpdateChannelCommandOutput>;
459
- /**
460
- * deserializeAws_restJson1PartialUpdateMessageCommand
461
- */
462
- export declare const de_PartialUpdateMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PartialUpdateMessageCommandOutput>;
463
- /**
464
- * deserializeAws_restJson1PinChannelCommand
465
- */
466
- export declare const de_PinChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PinChannelCommandOutput>;
467
- /**
468
- * deserializeAws_restJson1PinMessageCommand
469
- */
470
- export declare const de_PinMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PinMessageCommandOutput>;
471
- /**
472
- * deserializeAws_restJson1QueryChannelsCommand
473
- */
474
- export declare const de_QueryChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryChannelsCommandOutput>;
475
- /**
476
- * deserializeAws_restJson1RemoveChannelFromSectionCommand
477
- */
478
- export declare const de_RemoveChannelFromSectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveChannelFromSectionCommandOutput>;
479
- /**
480
- * deserializeAws_restJson1RenameSectionCommand
481
- */
482
- export declare const de_RenameSectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RenameSectionCommandOutput>;
483
- /**
484
- * deserializeAws_restJson1SearchChannelsCommand
485
- */
486
- export declare const de_SearchChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchChannelsCommandOutput>;
487
- /**
488
- * deserializeAws_restJson1SearchMessagesCommand
489
- */
490
- export declare const de_SearchMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchMessagesCommandOutput>;
491
- /**
492
- * deserializeAws_restJson1SendGiphyCommand
493
- */
494
- export declare const de_SendGiphyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendGiphyCommandOutput>;
495
- /**
496
- * deserializeAws_restJson1SendMessageCommand
497
- */
498
- export declare const de_SendMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageCommandOutput>;
499
- /**
500
- * deserializeAws_restJson1SendMessageReactionCommand
501
- */
502
- export declare const de_SendMessageReactionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageReactionCommandOutput>;
503
- /**
504
- * deserializeAws_restJson1SendSystemMessageCommand
505
- */
506
- export declare const de_SendSystemMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendSystemMessageCommandOutput>;
507
- /**
508
- * deserializeAws_restJson1SendTypingStartCommand
509
- */
510
- export declare const de_SendTypingStartCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTypingStartCommandOutput>;
511
- /**
512
- * deserializeAws_restJson1SendTypingStopCommand
513
- */
514
- export declare const de_SendTypingStopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTypingStopCommandOutput>;
515
- /**
516
- * deserializeAws_restJson1ShowChannelCommand
517
- */
518
- export declare const de_ShowChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ShowChannelCommandOutput>;
519
- /**
520
- * deserializeAws_restJson1UnmuteChannelCommand
521
- */
522
- export declare const de_UnmuteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnmuteChannelCommandOutput>;
523
- /**
524
- * deserializeAws_restJson1UnpinChannelCommand
525
- */
526
- export declare const de_UnpinChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnpinChannelCommandOutput>;
527
- /**
528
- * deserializeAws_restJson1UnpinMessageCommand
529
- */
530
- export declare const de_UnpinMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnpinMessageCommandOutput>;
531
- /**
532
- * deserializeAws_restJson1UpdateChannelCommand
533
- */
534
- export declare const de_UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
535
- /**
536
- * deserializeAws_restJson1UpdateMessageCommand
537
- */
538
- export declare const de_UpdateMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMessageCommandOutput>;
539
- /**
540
- * deserializeAws_restJson1UploadFileCommand
541
- */
542
- export declare const de_UploadFileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadFileCommandOutput>;