@wildix/stream-client 0.0.13 → 3.1.10

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 -381
  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 -365
  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 -73
  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 +12 -7
  161. package/dist-types/commands/CreateKiteChannelCommand.d.ts +12 -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 +12 -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 +12 -7
  173. package/dist-types/commands/GetMessageCommand.d.ts +11 -7
  174. package/dist-types/commands/GetOrCreateDirectChannelCommand.d.ts +12 -7
  175. package/dist-types/commands/GetOrCreateSmsChannelCommand.d.ts +12 -7
  176. package/dist-types/commands/GetOrCreateTelephonyChannelCommand.d.ts +12 -7
  177. package/dist-types/commands/GetOrCreateWhatsAppChannelCommand.d.ts +12 -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 +12 -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 +12 -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 +12 -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 +12 -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 +12 -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 +74 -669
  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 +13 -39
  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 -2463
  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 -2338
  240. package/dist-types/commands/SearchChannelsCommand.d.ts +0 -159
  241. package/dist-types/commands/SearchMessagesCommand.d.ts +0 -204
  242. package/dist-types/models/index.d.ts +0 -1
  243. package/dist-types/protocols/Aws_restJson1.d.ts +0 -542
@@ -1,65 +1,63 @@
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { type AddChannelMemberCommandInput, type AddChannelMemberCommandOutput } from "./commands/AddChannelMemberCommand";
3
+ import { type AddChannelMembersCommandInput, type AddChannelMembersCommandOutput } from "./commands/AddChannelMembersCommand";
4
+ import { type AssignChannelCommandInput, type AssignChannelCommandOutput } from "./commands/AssignChannelCommand";
5
+ import { type CreateGroupChannelCommandInput, type CreateGroupChannelCommandOutput } from "./commands/CreateGroupChannelCommand";
6
+ import { type CreateKiteChannelCommandInput, type CreateKiteChannelCommandOutput } from "./commands/CreateKiteChannelCommand";
7
+ import { type CreateSectionCommandInput, type CreateSectionCommandOutput } from "./commands/CreateSectionCommand";
8
+ import { type DeleteChannelCommandInput, type DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
9
+ import { type DeleteChannelMemberCommandInput, type DeleteChannelMemberCommandOutput } from "./commands/DeleteChannelMemberCommand";
10
+ import { type DeleteMessageCommandInput, type DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
11
+ import { type DeleteMessageReactionCommandInput, type DeleteMessageReactionCommandOutput } from "./commands/DeleteMessageReactionCommand";
12
+ import { type DeleteSectionCommandInput, type DeleteSectionCommandOutput } from "./commands/DeleteSectionCommand";
13
+ import { type GetChannelCommandInput, type GetChannelCommandOutput } from "./commands/GetChannelCommand";
14
+ import { type GetChannelMemberCommandInput, type GetChannelMemberCommandOutput } from "./commands/GetChannelMemberCommand";
15
+ import { type GetDirectChannelIdCommandInput, type GetDirectChannelIdCommandOutput } from "./commands/GetDirectChannelIdCommand";
16
+ import { type GetFilePresignedDownloadUrlCommandInput, type GetFilePresignedDownloadUrlCommandOutput } from "./commands/GetFilePresignedDownloadUrlCommand";
17
+ import { type GetInboxCommandInput, type GetInboxCommandOutput } from "./commands/GetInboxCommand";
18
+ import { type GetMessageCommandInput, type GetMessageCommandOutput } from "./commands/GetMessageCommand";
19
+ import { type GetOrCreateDirectChannelCommandInput, type GetOrCreateDirectChannelCommandOutput } from "./commands/GetOrCreateDirectChannelCommand";
20
+ import { type GetOrCreateSmsChannelCommandInput, type GetOrCreateSmsChannelCommandOutput } from "./commands/GetOrCreateSmsChannelCommand";
21
+ import { type GetOrCreateTelephonyChannelCommandInput, type GetOrCreateTelephonyChannelCommandOutput } from "./commands/GetOrCreateTelephonyChannelCommand";
22
+ import { type GetOrCreateWhatsAppChannelCommandInput, type GetOrCreateWhatsAppChannelCommandOutput } from "./commands/GetOrCreateWhatsAppChannelCommand";
23
+ import { type GetSmsChannelIdCommandInput, type GetSmsChannelIdCommandOutput } from "./commands/GetSmsChannelIdCommand";
24
+ import { type GetTelephonyChannelIdCommandInput, type GetTelephonyChannelIdCommandOutput } from "./commands/GetTelephonyChannelIdCommand";
25
+ import { type GetTokenCommandInput, type GetTokenCommandOutput } from "./commands/GetTokenCommand";
26
+ import { type GetUploadedFileInfoCommandInput, type GetUploadedFileInfoCommandOutput } from "./commands/GetUploadedFileInfoCommand";
27
+ import { type GetWhatsAppChannelIdCommandInput, type GetWhatsAppChannelIdCommandOutput } from "./commands/GetWhatsAppChannelIdCommand";
28
+ import { type HideChannelCommandInput, type HideChannelCommandOutput } from "./commands/HideChannelCommand";
29
+ import { type JoinChannelCommandInput, type JoinChannelCommandOutput } from "./commands/JoinChannelCommand";
30
+ import { type LeaveChannelCommandInput, type LeaveChannelCommandOutput } from "./commands/LeaveChannelCommand";
31
+ import { type ListChannelMembersCommandInput, type ListChannelMembersCommandOutput } from "./commands/ListChannelMembersCommand";
32
+ import { type ListChannelMembersReadStatusCommandInput, type ListChannelMembersReadStatusCommandOutput } from "./commands/ListChannelMembersReadStatusCommand";
33
+ import { type ListChannelsCommandInput, type ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
34
+ import { type ListMentionsCommandInput, type ListMentionsCommandOutput } from "./commands/ListMentionsCommand";
35
+ import { type ListMessagesCommandInput, type ListMessagesCommandOutput } from "./commands/ListMessagesCommand";
36
+ import { type MarkReadCommandInput, type MarkReadCommandOutput } from "./commands/MarkReadCommand";
37
+ import { type MarkUnreadCommandInput, type MarkUnreadCommandOutput } from "./commands/MarkUnreadCommand";
38
+ import { type MoveChannelToSectionCommandInput, type MoveChannelToSectionCommandOutput } from "./commands/MoveChannelToSectionCommand";
39
+ import { type MuteChannelCommandInput, type MuteChannelCommandOutput } from "./commands/MuteChannelCommand";
40
+ import { type PartialUpdateChannelCommandInput, type PartialUpdateChannelCommandOutput } from "./commands/PartialUpdateChannelCommand";
41
+ import { type PartialUpdateMessageCommandInput, type PartialUpdateMessageCommandOutput } from "./commands/PartialUpdateMessageCommand";
42
+ import { type PinChannelCommandInput, type PinChannelCommandOutput } from "./commands/PinChannelCommand";
43
+ import { type PinMessageCommandInput, type PinMessageCommandOutput } from "./commands/PinMessageCommand";
44
+ import { type QueryChannelsCommandInput, type QueryChannelsCommandOutput } from "./commands/QueryChannelsCommand";
45
+ import { type RemoveChannelFromSectionCommandInput, type RemoveChannelFromSectionCommandOutput } from "./commands/RemoveChannelFromSectionCommand";
46
+ import { type RenameSectionCommandInput, type RenameSectionCommandOutput } from "./commands/RenameSectionCommand";
47
+ import { type SendGiphyCommandInput, type SendGiphyCommandOutput } from "./commands/SendGiphyCommand";
48
+ import { type SendMessageCommandInput, type SendMessageCommandOutput } from "./commands/SendMessageCommand";
49
+ import { type SendMessageReactionCommandInput, type SendMessageReactionCommandOutput } from "./commands/SendMessageReactionCommand";
50
+ import { type SendSystemMessageCommandInput, type SendSystemMessageCommandOutput } from "./commands/SendSystemMessageCommand";
51
+ import { type SendTypingStartCommandInput, type SendTypingStartCommandOutput } from "./commands/SendTypingStartCommand";
52
+ import { type SendTypingStopCommandInput, type SendTypingStopCommandOutput } from "./commands/SendTypingStopCommand";
53
+ import { type ShowChannelCommandInput, type ShowChannelCommandOutput } from "./commands/ShowChannelCommand";
54
+ import { type UnmuteChannelCommandInput, type UnmuteChannelCommandOutput } from "./commands/UnmuteChannelCommand";
55
+ import { type UnpinChannelCommandInput, type UnpinChannelCommandOutput } from "./commands/UnpinChannelCommand";
56
+ import { type UnpinMessageCommandInput, type UnpinMessageCommandOutput } from "./commands/UnpinMessageCommand";
57
+ import { type UpdateChannelCommandInput, type UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
58
+ import { type UpdateMessageCommandInput, type UpdateMessageCommandOutput } from "./commands/UpdateMessageCommand";
59
+ import { type UploadFileCommandInput, type UploadFileCommandOutput } from "./commands/UploadFileCommand";
1
60
  import { StreamServiceClient } from "./StreamServiceClient";
2
- import { AddChannelMemberCommandInput, AddChannelMemberCommandOutput } from "./commands/AddChannelMemberCommand";
3
- import { AddChannelMembersCommandInput, AddChannelMembersCommandOutput } from "./commands/AddChannelMembersCommand";
4
- import { AssignChannelCommandInput, AssignChannelCommandOutput } from "./commands/AssignChannelCommand";
5
- import { CreateGroupChannelCommandInput, CreateGroupChannelCommandOutput } from "./commands/CreateGroupChannelCommand";
6
- import { CreateKiteChannelCommandInput, CreateKiteChannelCommandOutput } from "./commands/CreateKiteChannelCommand";
7
- import { CreateSectionCommandInput, CreateSectionCommandOutput } from "./commands/CreateSectionCommand";
8
- import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
9
- import { DeleteChannelMemberCommandInput, DeleteChannelMemberCommandOutput } from "./commands/DeleteChannelMemberCommand";
10
- import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
11
- import { DeleteMessageReactionCommandInput, DeleteMessageReactionCommandOutput } from "./commands/DeleteMessageReactionCommand";
12
- import { DeleteSectionCommandInput, DeleteSectionCommandOutput } from "./commands/DeleteSectionCommand";
13
- import { GetChannelCommandInput, GetChannelCommandOutput } from "./commands/GetChannelCommand";
14
- import { GetChannelMemberCommandInput, GetChannelMemberCommandOutput } from "./commands/GetChannelMemberCommand";
15
- import { GetDirectChannelIdCommandInput, GetDirectChannelIdCommandOutput } from "./commands/GetDirectChannelIdCommand";
16
- import { GetFilePresignedDownloadUrlCommandInput, GetFilePresignedDownloadUrlCommandOutput } from "./commands/GetFilePresignedDownloadUrlCommand";
17
- import { GetInboxCommandInput, GetInboxCommandOutput } from "./commands/GetInboxCommand";
18
- import { GetMessageCommandInput, GetMessageCommandOutput } from "./commands/GetMessageCommand";
19
- import { GetOrCreateDirectChannelCommandInput, GetOrCreateDirectChannelCommandOutput } from "./commands/GetOrCreateDirectChannelCommand";
20
- import { GetOrCreateSmsChannelCommandInput, GetOrCreateSmsChannelCommandOutput } from "./commands/GetOrCreateSmsChannelCommand";
21
- import { GetOrCreateTelephonyChannelCommandInput, GetOrCreateTelephonyChannelCommandOutput } from "./commands/GetOrCreateTelephonyChannelCommand";
22
- import { GetOrCreateWhatsAppChannelCommandInput, GetOrCreateWhatsAppChannelCommandOutput } from "./commands/GetOrCreateWhatsAppChannelCommand";
23
- import { GetSmsChannelIdCommandInput, GetSmsChannelIdCommandOutput } from "./commands/GetSmsChannelIdCommand";
24
- import { GetTelephonyChannelIdCommandInput, GetTelephonyChannelIdCommandOutput } from "./commands/GetTelephonyChannelIdCommand";
25
- import { GetTokenCommandInput, GetTokenCommandOutput } from "./commands/GetTokenCommand";
26
- import { GetUploadedFileInfoCommandInput, GetUploadedFileInfoCommandOutput } from "./commands/GetUploadedFileInfoCommand";
27
- import { GetWhatsAppChannelIdCommandInput, GetWhatsAppChannelIdCommandOutput } from "./commands/GetWhatsAppChannelIdCommand";
28
- import { HideChannelCommandInput, HideChannelCommandOutput } from "./commands/HideChannelCommand";
29
- import { JoinChannelCommandInput, JoinChannelCommandOutput } from "./commands/JoinChannelCommand";
30
- import { LeaveChannelCommandInput, LeaveChannelCommandOutput } from "./commands/LeaveChannelCommand";
31
- import { ListChannelMembersCommandInput, ListChannelMembersCommandOutput } from "./commands/ListChannelMembersCommand";
32
- import { ListChannelMembersReadStatusCommandInput, ListChannelMembersReadStatusCommandOutput } from "./commands/ListChannelMembersReadStatusCommand";
33
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
34
- import { ListMentionsCommandInput, ListMentionsCommandOutput } from "./commands/ListMentionsCommand";
35
- import { ListMessagesCommandInput, ListMessagesCommandOutput } from "./commands/ListMessagesCommand";
36
- import { MarkReadCommandInput, MarkReadCommandOutput } from "./commands/MarkReadCommand";
37
- import { MarkUnreadCommandInput, MarkUnreadCommandOutput } from "./commands/MarkUnreadCommand";
38
- import { MoveChannelToSectionCommandInput, MoveChannelToSectionCommandOutput } from "./commands/MoveChannelToSectionCommand";
39
- import { MuteChannelCommandInput, MuteChannelCommandOutput } from "./commands/MuteChannelCommand";
40
- import { PartialUpdateChannelCommandInput, PartialUpdateChannelCommandOutput } from "./commands/PartialUpdateChannelCommand";
41
- import { PartialUpdateMessageCommandInput, PartialUpdateMessageCommandOutput } from "./commands/PartialUpdateMessageCommand";
42
- import { PinChannelCommandInput, PinChannelCommandOutput } from "./commands/PinChannelCommand";
43
- import { PinMessageCommandInput, PinMessageCommandOutput } from "./commands/PinMessageCommand";
44
- import { QueryChannelsCommandInput, QueryChannelsCommandOutput } from "./commands/QueryChannelsCommand";
45
- import { RemoveChannelFromSectionCommandInput, RemoveChannelFromSectionCommandOutput } from "./commands/RemoveChannelFromSectionCommand";
46
- import { RenameSectionCommandInput, RenameSectionCommandOutput } from "./commands/RenameSectionCommand";
47
- import { SearchChannelsCommandInput, SearchChannelsCommandOutput } from "./commands/SearchChannelsCommand";
48
- import { SearchMessagesCommandInput, SearchMessagesCommandOutput } from "./commands/SearchMessagesCommand";
49
- import { SendGiphyCommandInput, SendGiphyCommandOutput } from "./commands/SendGiphyCommand";
50
- import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
51
- import { SendMessageReactionCommandInput, SendMessageReactionCommandOutput } from "./commands/SendMessageReactionCommand";
52
- import { SendSystemMessageCommandInput, SendSystemMessageCommandOutput } from "./commands/SendSystemMessageCommand";
53
- import { SendTypingStartCommandInput, SendTypingStartCommandOutput } from "./commands/SendTypingStartCommand";
54
- import { SendTypingStopCommandInput, SendTypingStopCommandOutput } from "./commands/SendTypingStopCommand";
55
- import { ShowChannelCommandInput, ShowChannelCommandOutput } from "./commands/ShowChannelCommand";
56
- import { UnmuteChannelCommandInput, UnmuteChannelCommandOutput } from "./commands/UnmuteChannelCommand";
57
- import { UnpinChannelCommandInput, UnpinChannelCommandOutput } from "./commands/UnpinChannelCommand";
58
- import { UnpinMessageCommandInput, UnpinMessageCommandOutput } from "./commands/UnpinMessageCommand";
59
- import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
60
- import { UpdateMessageCommandInput, UpdateMessageCommandOutput } from "./commands/UpdateMessageCommand";
61
- import { UploadFileCommandInput, UploadFileCommandOutput } from "./commands/UploadFileCommand";
62
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
63
61
  export interface StreamService {
64
62
  /**
65
63
  * @see {@link AddChannelMemberCommand}
@@ -338,18 +336,6 @@ export interface StreamService {
338
336
  renameSection(args: RenameSectionCommandInput, options?: __HttpHandlerOptions): Promise<RenameSectionCommandOutput>;
339
337
  renameSection(args: RenameSectionCommandInput, cb: (err: any, data?: RenameSectionCommandOutput) => void): void;
340
338
  renameSection(args: RenameSectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenameSectionCommandOutput) => void): void;
341
- /**
342
- * @see {@link SearchChannelsCommand}
343
- */
344
- searchChannels(args: SearchChannelsCommandInput, options?: __HttpHandlerOptions): Promise<SearchChannelsCommandOutput>;
345
- searchChannels(args: SearchChannelsCommandInput, cb: (err: any, data?: SearchChannelsCommandOutput) => void): void;
346
- searchChannels(args: SearchChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchChannelsCommandOutput) => void): void;
347
- /**
348
- * @see {@link SearchMessagesCommand}
349
- */
350
- searchMessages(args: SearchMessagesCommandInput, options?: __HttpHandlerOptions): Promise<SearchMessagesCommandOutput>;
351
- searchMessages(args: SearchMessagesCommandInput, cb: (err: any, data?: SearchMessagesCommandOutput) => void): void;
352
- searchMessages(args: SearchMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchMessagesCommandOutput) => void): void;
353
339
  /**
354
340
  * @see {@link SendGiphyCommand}
355
341
  */
@@ -1,79 +1,79 @@
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 { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
62
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
63
- import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
64
- import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
65
- import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
66
- import { Provider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
67
- import { TokenProvider } from '@wildix/smithy-utils';
1
+ import { type HostHeaderInputConfig, type HostHeaderResolvedConfig, type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/core/client";
2
+ import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
3
+ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
4
+ import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
5
+ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
6
+ import type { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
7
+ import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
8
+ import type { AddChannelMemberCommandInput, AddChannelMemberCommandOutput } from "./commands/AddChannelMemberCommand";
9
+ import type { AddChannelMembersCommandInput, AddChannelMembersCommandOutput } from "./commands/AddChannelMembersCommand";
10
+ import type { AssignChannelCommandInput, AssignChannelCommandOutput } from "./commands/AssignChannelCommand";
11
+ import type { CreateGroupChannelCommandInput, CreateGroupChannelCommandOutput } from "./commands/CreateGroupChannelCommand";
12
+ import type { CreateKiteChannelCommandInput, CreateKiteChannelCommandOutput } from "./commands/CreateKiteChannelCommand";
13
+ import type { CreateSectionCommandInput, CreateSectionCommandOutput } from "./commands/CreateSectionCommand";
14
+ import type { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
15
+ import type { DeleteChannelMemberCommandInput, DeleteChannelMemberCommandOutput } from "./commands/DeleteChannelMemberCommand";
16
+ import type { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
17
+ import type { DeleteMessageReactionCommandInput, DeleteMessageReactionCommandOutput } from "./commands/DeleteMessageReactionCommand";
18
+ import type { DeleteSectionCommandInput, DeleteSectionCommandOutput } from "./commands/DeleteSectionCommand";
19
+ import type { GetChannelCommandInput, GetChannelCommandOutput } from "./commands/GetChannelCommand";
20
+ import type { GetChannelMemberCommandInput, GetChannelMemberCommandOutput } from "./commands/GetChannelMemberCommand";
21
+ import type { GetDirectChannelIdCommandInput, GetDirectChannelIdCommandOutput } from "./commands/GetDirectChannelIdCommand";
22
+ import type { GetFilePresignedDownloadUrlCommandInput, GetFilePresignedDownloadUrlCommandOutput } from "./commands/GetFilePresignedDownloadUrlCommand";
23
+ import type { GetInboxCommandInput, GetInboxCommandOutput } from "./commands/GetInboxCommand";
24
+ import type { GetMessageCommandInput, GetMessageCommandOutput } from "./commands/GetMessageCommand";
25
+ import type { GetOrCreateDirectChannelCommandInput, GetOrCreateDirectChannelCommandOutput } from "./commands/GetOrCreateDirectChannelCommand";
26
+ import type { GetOrCreateSmsChannelCommandInput, GetOrCreateSmsChannelCommandOutput } from "./commands/GetOrCreateSmsChannelCommand";
27
+ import type { GetOrCreateTelephonyChannelCommandInput, GetOrCreateTelephonyChannelCommandOutput } from "./commands/GetOrCreateTelephonyChannelCommand";
28
+ import type { GetOrCreateWhatsAppChannelCommandInput, GetOrCreateWhatsAppChannelCommandOutput } from "./commands/GetOrCreateWhatsAppChannelCommand";
29
+ import type { GetSmsChannelIdCommandInput, GetSmsChannelIdCommandOutput } from "./commands/GetSmsChannelIdCommand";
30
+ import type { GetTelephonyChannelIdCommandInput, GetTelephonyChannelIdCommandOutput } from "./commands/GetTelephonyChannelIdCommand";
31
+ import type { GetTokenCommandInput, GetTokenCommandOutput } from "./commands/GetTokenCommand";
32
+ import type { GetUploadedFileInfoCommandInput, GetUploadedFileInfoCommandOutput } from "./commands/GetUploadedFileInfoCommand";
33
+ import type { GetWhatsAppChannelIdCommandInput, GetWhatsAppChannelIdCommandOutput } from "./commands/GetWhatsAppChannelIdCommand";
34
+ import type { HideChannelCommandInput, HideChannelCommandOutput } from "./commands/HideChannelCommand";
35
+ import type { JoinChannelCommandInput, JoinChannelCommandOutput } from "./commands/JoinChannelCommand";
36
+ import type { LeaveChannelCommandInput, LeaveChannelCommandOutput } from "./commands/LeaveChannelCommand";
37
+ import type { ListChannelMembersCommandInput, ListChannelMembersCommandOutput } from "./commands/ListChannelMembersCommand";
38
+ import type { ListChannelMembersReadStatusCommandInput, ListChannelMembersReadStatusCommandOutput } from "./commands/ListChannelMembersReadStatusCommand";
39
+ import type { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
40
+ import type { ListMentionsCommandInput, ListMentionsCommandOutput } from "./commands/ListMentionsCommand";
41
+ import type { ListMessagesCommandInput, ListMessagesCommandOutput } from "./commands/ListMessagesCommand";
42
+ import type { MarkReadCommandInput, MarkReadCommandOutput } from "./commands/MarkReadCommand";
43
+ import type { MarkUnreadCommandInput, MarkUnreadCommandOutput } from "./commands/MarkUnreadCommand";
44
+ import type { MoveChannelToSectionCommandInput, MoveChannelToSectionCommandOutput } from "./commands/MoveChannelToSectionCommand";
45
+ import type { MuteChannelCommandInput, MuteChannelCommandOutput } from "./commands/MuteChannelCommand";
46
+ import type { PartialUpdateChannelCommandInput, PartialUpdateChannelCommandOutput } from "./commands/PartialUpdateChannelCommand";
47
+ import type { PartialUpdateMessageCommandInput, PartialUpdateMessageCommandOutput } from "./commands/PartialUpdateMessageCommand";
48
+ import type { PinChannelCommandInput, PinChannelCommandOutput } from "./commands/PinChannelCommand";
49
+ import type { PinMessageCommandInput, PinMessageCommandOutput } from "./commands/PinMessageCommand";
50
+ import type { QueryChannelsCommandInput, QueryChannelsCommandOutput } from "./commands/QueryChannelsCommand";
51
+ import type { RemoveChannelFromSectionCommandInput, RemoveChannelFromSectionCommandOutput } from "./commands/RemoveChannelFromSectionCommand";
52
+ import type { RenameSectionCommandInput, RenameSectionCommandOutput } from "./commands/RenameSectionCommand";
53
+ import type { SendGiphyCommandInput, SendGiphyCommandOutput } from "./commands/SendGiphyCommand";
54
+ import type { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
55
+ import type { SendMessageReactionCommandInput, SendMessageReactionCommandOutput } from "./commands/SendMessageReactionCommand";
56
+ import type { SendSystemMessageCommandInput, SendSystemMessageCommandOutput } from "./commands/SendSystemMessageCommand";
57
+ import type { SendTypingStartCommandInput, SendTypingStartCommandOutput } from "./commands/SendTypingStartCommand";
58
+ import type { SendTypingStopCommandInput, SendTypingStopCommandOutput } from "./commands/SendTypingStopCommand";
59
+ import type { ShowChannelCommandInput, ShowChannelCommandOutput } from "./commands/ShowChannelCommand";
60
+ import type { UnmuteChannelCommandInput, UnmuteChannelCommandOutput } from "./commands/UnmuteChannelCommand";
61
+ import type { UnpinChannelCommandInput, UnpinChannelCommandOutput } from "./commands/UnpinChannelCommand";
62
+ import type { UnpinMessageCommandInput, UnpinMessageCommandOutput } from "./commands/UnpinMessageCommand";
63
+ import type { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
64
+ import type { UpdateMessageCommandInput, UpdateMessageCommandOutput } from "./commands/UpdateMessageCommand";
65
+ import type { UploadFileCommandInput, UploadFileCommandOutput } from "./commands/UploadFileCommand";
66
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
67
+ import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
68
68
  export { __Client };
69
69
  /**
70
70
  * @public
71
71
  */
72
- export type ServiceInputTypes = AddChannelMemberCommandInput | AddChannelMembersCommandInput | AssignChannelCommandInput | CreateGroupChannelCommandInput | CreateKiteChannelCommandInput | CreateSectionCommandInput | DeleteChannelCommandInput | DeleteChannelMemberCommandInput | DeleteMessageCommandInput | DeleteMessageReactionCommandInput | DeleteSectionCommandInput | GetChannelCommandInput | GetChannelMemberCommandInput | GetDirectChannelIdCommandInput | GetFilePresignedDownloadUrlCommandInput | GetInboxCommandInput | GetMessageCommandInput | GetOrCreateDirectChannelCommandInput | GetOrCreateSmsChannelCommandInput | GetOrCreateTelephonyChannelCommandInput | GetOrCreateWhatsAppChannelCommandInput | GetSmsChannelIdCommandInput | GetTelephonyChannelIdCommandInput | GetTokenCommandInput | GetUploadedFileInfoCommandInput | GetWhatsAppChannelIdCommandInput | HideChannelCommandInput | JoinChannelCommandInput | LeaveChannelCommandInput | ListChannelMembersCommandInput | ListChannelMembersReadStatusCommandInput | ListChannelsCommandInput | ListMentionsCommandInput | ListMessagesCommandInput | MarkReadCommandInput | MarkUnreadCommandInput | MoveChannelToSectionCommandInput | MuteChannelCommandInput | PartialUpdateChannelCommandInput | PartialUpdateMessageCommandInput | PinChannelCommandInput | PinMessageCommandInput | QueryChannelsCommandInput | RemoveChannelFromSectionCommandInput | RenameSectionCommandInput | SearchChannelsCommandInput | SearchMessagesCommandInput | SendGiphyCommandInput | SendMessageCommandInput | SendMessageReactionCommandInput | SendSystemMessageCommandInput | SendTypingStartCommandInput | SendTypingStopCommandInput | ShowChannelCommandInput | UnmuteChannelCommandInput | UnpinChannelCommandInput | UnpinMessageCommandInput | UpdateChannelCommandInput | UpdateMessageCommandInput | UploadFileCommandInput;
72
+ export type ServiceInputTypes = AddChannelMemberCommandInput | AddChannelMembersCommandInput | AssignChannelCommandInput | CreateGroupChannelCommandInput | CreateKiteChannelCommandInput | CreateSectionCommandInput | DeleteChannelCommandInput | DeleteChannelMemberCommandInput | DeleteMessageCommandInput | DeleteMessageReactionCommandInput | DeleteSectionCommandInput | GetChannelCommandInput | GetChannelMemberCommandInput | GetDirectChannelIdCommandInput | GetFilePresignedDownloadUrlCommandInput | GetInboxCommandInput | GetMessageCommandInput | GetOrCreateDirectChannelCommandInput | GetOrCreateSmsChannelCommandInput | GetOrCreateTelephonyChannelCommandInput | GetOrCreateWhatsAppChannelCommandInput | GetSmsChannelIdCommandInput | GetTelephonyChannelIdCommandInput | GetTokenCommandInput | GetUploadedFileInfoCommandInput | GetWhatsAppChannelIdCommandInput | HideChannelCommandInput | JoinChannelCommandInput | LeaveChannelCommandInput | ListChannelMembersCommandInput | ListChannelMembersReadStatusCommandInput | ListChannelsCommandInput | ListMentionsCommandInput | ListMessagesCommandInput | MarkReadCommandInput | MarkUnreadCommandInput | MoveChannelToSectionCommandInput | MuteChannelCommandInput | PartialUpdateChannelCommandInput | PartialUpdateMessageCommandInput | PinChannelCommandInput | PinMessageCommandInput | QueryChannelsCommandInput | RemoveChannelFromSectionCommandInput | RenameSectionCommandInput | SendGiphyCommandInput | SendMessageCommandInput | SendMessageReactionCommandInput | SendSystemMessageCommandInput | SendTypingStartCommandInput | SendTypingStopCommandInput | ShowChannelCommandInput | UnmuteChannelCommandInput | UnpinChannelCommandInput | UnpinMessageCommandInput | UpdateChannelCommandInput | UpdateMessageCommandInput | UploadFileCommandInput;
73
73
  /**
74
74
  * @public
75
75
  */
76
- export type ServiceOutputTypes = AddChannelMemberCommandOutput | AddChannelMembersCommandOutput | AssignChannelCommandOutput | CreateGroupChannelCommandOutput | CreateKiteChannelCommandOutput | CreateSectionCommandOutput | DeleteChannelCommandOutput | DeleteChannelMemberCommandOutput | DeleteMessageCommandOutput | DeleteMessageReactionCommandOutput | DeleteSectionCommandOutput | GetChannelCommandOutput | GetChannelMemberCommandOutput | GetDirectChannelIdCommandOutput | GetFilePresignedDownloadUrlCommandOutput | GetInboxCommandOutput | GetMessageCommandOutput | GetOrCreateDirectChannelCommandOutput | GetOrCreateSmsChannelCommandOutput | GetOrCreateTelephonyChannelCommandOutput | GetOrCreateWhatsAppChannelCommandOutput | GetSmsChannelIdCommandOutput | GetTelephonyChannelIdCommandOutput | GetTokenCommandOutput | GetUploadedFileInfoCommandOutput | GetWhatsAppChannelIdCommandOutput | HideChannelCommandOutput | JoinChannelCommandOutput | LeaveChannelCommandOutput | ListChannelMembersCommandOutput | ListChannelMembersReadStatusCommandOutput | ListChannelsCommandOutput | ListMentionsCommandOutput | ListMessagesCommandOutput | MarkReadCommandOutput | MarkUnreadCommandOutput | MoveChannelToSectionCommandOutput | MuteChannelCommandOutput | PartialUpdateChannelCommandOutput | PartialUpdateMessageCommandOutput | PinChannelCommandOutput | PinMessageCommandOutput | QueryChannelsCommandOutput | RemoveChannelFromSectionCommandOutput | RenameSectionCommandOutput | SearchChannelsCommandOutput | SearchMessagesCommandOutput | SendGiphyCommandOutput | SendMessageCommandOutput | SendMessageReactionCommandOutput | SendSystemMessageCommandOutput | SendTypingStartCommandOutput | SendTypingStopCommandOutput | ShowChannelCommandOutput | UnmuteChannelCommandOutput | UnpinChannelCommandOutput | UnpinMessageCommandOutput | UpdateChannelCommandOutput | UpdateMessageCommandOutput | UploadFileCommandOutput;
76
+ export type ServiceOutputTypes = AddChannelMemberCommandOutput | AddChannelMembersCommandOutput | AssignChannelCommandOutput | CreateGroupChannelCommandOutput | CreateKiteChannelCommandOutput | CreateSectionCommandOutput | DeleteChannelCommandOutput | DeleteChannelMemberCommandOutput | DeleteMessageCommandOutput | DeleteMessageReactionCommandOutput | DeleteSectionCommandOutput | GetChannelCommandOutput | GetChannelMemberCommandOutput | GetDirectChannelIdCommandOutput | GetFilePresignedDownloadUrlCommandOutput | GetInboxCommandOutput | GetMessageCommandOutput | GetOrCreateDirectChannelCommandOutput | GetOrCreateSmsChannelCommandOutput | GetOrCreateTelephonyChannelCommandOutput | GetOrCreateWhatsAppChannelCommandOutput | GetSmsChannelIdCommandOutput | GetTelephonyChannelIdCommandOutput | GetTokenCommandOutput | GetUploadedFileInfoCommandOutput | GetWhatsAppChannelIdCommandOutput | HideChannelCommandOutput | JoinChannelCommandOutput | LeaveChannelCommandOutput | ListChannelMembersCommandOutput | ListChannelMembersReadStatusCommandOutput | ListChannelsCommandOutput | ListMentionsCommandOutput | ListMessagesCommandOutput | MarkReadCommandOutput | MarkUnreadCommandOutput | MoveChannelToSectionCommandOutput | MuteChannelCommandOutput | PartialUpdateChannelCommandOutput | PartialUpdateMessageCommandOutput | PinChannelCommandOutput | PinMessageCommandOutput | QueryChannelsCommandOutput | RemoveChannelFromSectionCommandOutput | RenameSectionCommandOutput | SendGiphyCommandOutput | SendMessageCommandOutput | SendMessageReactionCommandOutput | SendSystemMessageCommandOutput | SendTypingStartCommandOutput | SendTypingStopCommandOutput | ShowChannelCommandOutput | UnmuteChannelCommandOutput | UnpinChannelCommandOutput | UnpinMessageCommandOutput | UpdateChannelCommandOutput | UpdateMessageCommandOutput | UploadFileCommandOutput;
77
77
  /**
78
78
  * @public
79
79
  */
@@ -133,11 +133,29 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
133
133
  * trait of an operation.
134
134
  */
135
135
  disableHostPrefix?: boolean;
136
+ /**
137
+ * Setting a client profile is similar to setting a value for the
138
+ * AWS_PROFILE environment variable. Setting a profile on a client
139
+ * in code only affects the single client instance, unlike AWS_PROFILE.
140
+ *
141
+ * When set, and only for environments where an AWS configuration
142
+ * file exists, fields configurable by this file will be retrieved
143
+ * from the specified profile within that file.
144
+ * Conflicting code configuration and environment variables will
145
+ * still have higher priority.
146
+ *
147
+ * For client credential resolution that involves checking the AWS
148
+ * configuration file, the client's profile (this value) will be
149
+ * used unless a different profile is set in the credential
150
+ * provider options.
151
+ *
152
+ */
153
+ profile?: string;
136
154
  /**
137
155
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
138
156
  * @internal
139
157
  */
140
- defaultUserAgentProvider?: Provider<__UserAgent>;
158
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
141
159
  /**
142
160
  * Value for how many times a request will be made at most in case of retry.
143
161
  */
@@ -164,22 +182,18 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
164
182
  /**
165
183
  * @public
166
184
  */
167
- export type StreamServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig;
185
+ export type StreamServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
168
186
  /**
169
187
  * @public
170
188
  *
171
189
  * The configuration interface of StreamServiceClient class constructor that set the region, credentials and other options.
172
190
  */
173
191
  export interface StreamServiceClientConfig extends StreamServiceClientConfigType {
174
- serviceRegion?: 'eu-1' | 'us-1';
175
- env?: 'stage' | 'stable' | 'prod';
176
- token: TokenProvider;
177
- endpoint?: () => Record<string, string>;
178
192
  }
179
193
  /**
180
194
  * @public
181
195
  */
182
- export type StreamServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig;
196
+ export type StreamServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
183
197
  /**
184
198
  * @public
185
199
  *
@@ -0,0 +1,29 @@
1
+ import { type HttpAuthScheme, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
2
+ import type { StreamServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: StreamServiceHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): StreamServiceHttpAuthSchemeProvider;
11
+ setToken(token: TokenIdentity | TokenIdentityProvider): void;
12
+ token(): TokenIdentity | TokenIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: StreamServiceHttpAuthSchemeProvider;
20
+ token: TokenIdentity | TokenIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
@@ -0,0 +1,81 @@
1
+ import { type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
2
+ import type { StreamServiceClientResolvedConfig } from "../StreamServiceClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface StreamServiceHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
7
+ }
8
+ /**
9
+ * @internal
10
+ */
11
+ export interface StreamServiceHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<StreamServiceClientResolvedConfig, HandlerExecutionContext, StreamServiceHttpAuthSchemeParameters, object> {
12
+ }
13
+ /**
14
+ * @internal
15
+ */
16
+ export declare const defaultStreamServiceHttpAuthSchemeParametersProvider: (config: StreamServiceClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<StreamServiceHttpAuthSchemeParameters>;
17
+ /**
18
+ * @internal
19
+ */
20
+ export interface StreamServiceHttpAuthSchemeProvider extends HttpAuthSchemeProvider<StreamServiceHttpAuthSchemeParameters> {
21
+ }
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const defaultStreamServiceHttpAuthSchemeProvider: StreamServiceHttpAuthSchemeProvider;
26
+ /**
27
+ * @public
28
+ */
29
+ export interface HttpAuthSchemeInputConfig {
30
+ /**
31
+ * A comma-separated list of case-sensitive auth scheme names.
32
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
33
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
34
+ * @public
35
+ */
36
+ authSchemePreference?: string[] | Provider<string[]>;
37
+ /**
38
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
39
+ * @internal
40
+ */
41
+ httpAuthSchemes?: HttpAuthScheme[];
42
+ /**
43
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
44
+ * @internal
45
+ */
46
+ httpAuthSchemeProvider?: StreamServiceHttpAuthSchemeProvider;
47
+ /**
48
+ * The token used to authenticate requests.
49
+ */
50
+ token?: TokenIdentity | TokenIdentityProvider;
51
+ }
52
+ /**
53
+ * @internal
54
+ */
55
+ export interface HttpAuthSchemeResolvedConfig {
56
+ /**
57
+ * A comma-separated list of case-sensitive auth scheme names.
58
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
59
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
60
+ * @public
61
+ */
62
+ readonly authSchemePreference: Provider<string[]>;
63
+ /**
64
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
65
+ * @internal
66
+ */
67
+ readonly httpAuthSchemes: HttpAuthScheme[];
68
+ /**
69
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
70
+ * @internal
71
+ */
72
+ readonly httpAuthSchemeProvider: StreamServiceHttpAuthSchemeProvider;
73
+ /**
74
+ * The token used to authenticate requests.
75
+ */
76
+ readonly token?: TokenIdentityProvider;
77
+ }
78
+ /**
79
+ * @internal
80
+ */
81
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig) => T & HttpAuthSchemeResolvedConfig;
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, StreamServiceClientResolvedConfig } from "../StreamServiceClient";
2
- import { AddChannelMemberInput, AddChannelMemberOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { AddChannelMemberInput, AddChannelMemberOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, StreamServiceClientResolvedConfig } from "../StreamServiceClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface AddChannelMemberCommandInput extends AddChannelMemberInput {
22
22
  export interface AddChannelMemberCommandOutput extends AddChannelMemberOutput, __MetadataBearer {
23
23
  }
24
24
  declare const AddChannelMemberCommand_base: {
25
- new (input: AddChannelMemberCommandInput): import("@smithy/smithy-client").CommandImpl<AddChannelMemberCommandInput, AddChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: AddChannelMemberCommandInput): import("@smithy/smithy-client").CommandImpl<AddChannelMemberCommandInput, AddChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: AddChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMemberCommandInput, AddChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AddChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMemberCommandInput, AddChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Adds one member to a channel.
@@ -33,6 +35,8 @@ declare const AddChannelMemberCommand_base: {
33
35
  * ```javascript
34
36
  * import { StreamServiceClient, AddChannelMemberCommand } from "@wildix/stream-client"; // ES Modules import
35
37
  * // const { StreamServiceClient, AddChannelMemberCommand } = require("@wildix/stream-client"); // CommonJS import
38
+ * // import type { StreamServiceClientConfig } from "@wildix/stream-client";
39
+ * const config = {}; // type is StreamServiceClientConfig
36
40
  * const client = new StreamServiceClient(config);
37
41
  * const input = { // AddChannelMemberInput
38
42
  * companyId: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, StreamServiceClientResolvedConfig } from "../StreamServiceClient";
2
- import { AddChannelMembersInput, AddChannelMembersOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { AddChannelMembersInput, AddChannelMembersOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, StreamServiceClientResolvedConfig } from "../StreamServiceClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface AddChannelMembersCommandInput extends AddChannelMembersInput {
22
22
  export interface AddChannelMembersCommandOutput extends AddChannelMembersOutput, __MetadataBearer {
23
23
  }
24
24
  declare const AddChannelMembersCommand_base: {
25
- new (input: AddChannelMembersCommandInput): import("@smithy/smithy-client").CommandImpl<AddChannelMembersCommandInput, AddChannelMembersCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: AddChannelMembersCommandInput): import("@smithy/smithy-client").CommandImpl<AddChannelMembersCommandInput, AddChannelMembersCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: AddChannelMembersCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMembersCommandInput, AddChannelMembersCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AddChannelMembersCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMembersCommandInput, AddChannelMembersCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Adds members to a channel.
@@ -33,6 +35,8 @@ declare const AddChannelMembersCommand_base: {
33
35
  * ```javascript
34
36
  * import { StreamServiceClient, AddChannelMembersCommand } from "@wildix/stream-client"; // ES Modules import
35
37
  * // const { StreamServiceClient, AddChannelMembersCommand } = require("@wildix/stream-client"); // CommonJS import
38
+ * // import type { StreamServiceClientConfig } from "@wildix/stream-client";
39
+ * const config = {}; // type is StreamServiceClientConfig
36
40
  * const client = new StreamServiceClient(config);
37
41
  * const input = { // AddChannelMembersInput
38
42
  * companyId: "STRING_VALUE",