@wildix/stream-client 4.0.1 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/StreamService.js +4 -0
- package/dist-cjs/commands/SearchChannelsCommand.js +20 -0
- package/dist-cjs/commands/SearchMessagesCommand.js +20 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/enums.js +12 -1
- package/dist-cjs/schemas/schemas_0.js +84 -19
- package/dist-es/StreamService.js +4 -0
- package/dist-es/commands/SearchChannelsCommand.js +16 -0
- package/dist-es/commands/SearchMessagesCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +11 -0
- package/dist-es/schemas/schemas_0.js +81 -16
- package/dist-types/StreamService.d.ts +16 -0
- package/dist-types/StreamServiceClient.d.ts +4 -2
- package/dist-types/commands/AddChannelMemberCommand.d.ts +1 -3
- package/dist-types/commands/AddChannelMembersCommand.d.ts +1 -3
- package/dist-types/commands/AssignChannelCommand.d.ts +1 -3
- package/dist-types/commands/CreateGroupChannelCommand.d.ts +4 -3
- package/dist-types/commands/CreateKiteChannelCommand.d.ts +4 -3
- package/dist-types/commands/CreateSectionCommand.d.ts +1 -3
- package/dist-types/commands/DeleteChannelCommand.d.ts +1 -3
- package/dist-types/commands/DeleteChannelMemberCommand.d.ts +1 -3
- package/dist-types/commands/DeleteMessageCommand.d.ts +1 -3
- package/dist-types/commands/DeleteMessageReactionCommand.d.ts +1 -3
- package/dist-types/commands/DeleteSectionCommand.d.ts +1 -3
- package/dist-types/commands/GetChannelCommand.d.ts +4 -3
- package/dist-types/commands/GetChannelMemberCommand.d.ts +1 -3
- package/dist-types/commands/GetDirectChannelIdCommand.d.ts +1 -3
- package/dist-types/commands/GetFilePresignedDownloadUrlCommand.d.ts +1 -3
- package/dist-types/commands/GetInboxCommand.d.ts +4 -3
- package/dist-types/commands/GetMessageCommand.d.ts +1 -3
- package/dist-types/commands/GetOrCreateDirectChannelCommand.d.ts +4 -3
- package/dist-types/commands/GetOrCreateSmsChannelCommand.d.ts +4 -3
- package/dist-types/commands/GetOrCreateTelephonyChannelCommand.d.ts +4 -3
- package/dist-types/commands/GetOrCreateWhatsAppChannelCommand.d.ts +4 -3
- package/dist-types/commands/GetSmsChannelIdCommand.d.ts +1 -3
- package/dist-types/commands/GetTelephonyChannelIdCommand.d.ts +1 -3
- package/dist-types/commands/GetTokenCommand.d.ts +1 -3
- package/dist-types/commands/GetUploadedFileInfoCommand.d.ts +1 -3
- package/dist-types/commands/GetWhatsAppChannelIdCommand.d.ts +1 -3
- package/dist-types/commands/HideChannelCommand.d.ts +1 -3
- package/dist-types/commands/JoinChannelCommand.d.ts +4 -3
- package/dist-types/commands/LeaveChannelCommand.d.ts +1 -3
- package/dist-types/commands/ListChannelMembersCommand.d.ts +1 -3
- package/dist-types/commands/ListChannelMembersReadStatusCommand.d.ts +1 -3
- package/dist-types/commands/ListChannelsCommand.d.ts +4 -3
- package/dist-types/commands/ListMentionsCommand.d.ts +1 -3
- package/dist-types/commands/ListMessagesCommand.d.ts +1 -3
- package/dist-types/commands/MarkReadCommand.d.ts +1 -3
- package/dist-types/commands/MarkUnreadCommand.d.ts +1 -3
- package/dist-types/commands/MoveChannelToSectionCommand.d.ts +1 -3
- package/dist-types/commands/MuteChannelCommand.d.ts +1 -3
- package/dist-types/commands/PartialUpdateChannelCommand.d.ts +4 -3
- package/dist-types/commands/PartialUpdateMessageCommand.d.ts +1 -3
- package/dist-types/commands/PinChannelCommand.d.ts +1 -3
- package/dist-types/commands/PinMessageCommand.d.ts +1 -3
- package/dist-types/commands/QueryChannelsCommand.d.ts +4 -3
- package/dist-types/commands/RemoveChannelFromSectionCommand.d.ts +1 -3
- package/dist-types/commands/RenameSectionCommand.d.ts +1 -3
- package/dist-types/commands/SearchChannelsCommand.d.ts +168 -0
- package/dist-types/commands/SearchMessagesCommand.d.ts +213 -0
- package/dist-types/commands/SendGiphyCommand.d.ts +1 -3
- package/dist-types/commands/SendMessageCommand.d.ts +1 -3
- package/dist-types/commands/SendMessageReactionCommand.d.ts +1 -3
- package/dist-types/commands/SendSystemMessageCommand.d.ts +1 -3
- package/dist-types/commands/SendTypingStartCommand.d.ts +1 -3
- package/dist-types/commands/SendTypingStopCommand.d.ts +1 -3
- package/dist-types/commands/ShowChannelCommand.d.ts +1 -3
- package/dist-types/commands/UnmuteChannelCommand.d.ts +1 -3
- package/dist-types/commands/UnpinChannelCommand.d.ts +1 -3
- package/dist-types/commands/UnpinMessageCommand.d.ts +1 -3
- package/dist-types/commands/UpdateChannelCommand.d.ts +4 -3
- package/dist-types/commands/UpdateMessageCommand.d.ts +1 -3
- package/dist-types/commands/UploadFileCommand.d.ts +1 -3
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +27 -0
- package/dist-types/models/models_0.d.ts +173 -1
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/package.json +1 -1
|
@@ -193,20 +193,30 @@ const _RS = "RenameSection";
|
|
|
193
193
|
const _RSI = "RenameSectionInput";
|
|
194
194
|
const _RSO = "RenameSectionOutput";
|
|
195
195
|
const _S = "Section";
|
|
196
|
-
const _SC = "
|
|
197
|
-
const
|
|
198
|
-
const
|
|
196
|
+
const _SC = "SearchChannels";
|
|
197
|
+
const _SCH = "SearchChannelHit";
|
|
198
|
+
const _SCHL = "SearchChannelHitList";
|
|
199
|
+
const _SCI = "SearchChannelsInput";
|
|
200
|
+
const _SCIh = "ShowChannelInput";
|
|
201
|
+
const _SCO = "SearchChannelsOutput";
|
|
202
|
+
const _SCOh = "ShowChannelOutput";
|
|
203
|
+
const _SCh = "ShowChannel";
|
|
199
204
|
const _SG = "SendGiphy";
|
|
200
205
|
const _SGI = "SendGiphyInput";
|
|
201
206
|
const _SGO = "SendGiphyOutput";
|
|
202
207
|
const _SL = "SectionList";
|
|
203
208
|
const _SM = "SystemMessage";
|
|
204
|
-
const
|
|
205
|
-
const
|
|
209
|
+
const _SMH = "SearchMessageHit";
|
|
210
|
+
const _SMHL = "SearchMessageHitList";
|
|
211
|
+
const _SMI = "SearchMessagesInput";
|
|
212
|
+
const _SMIe = "SendMessageInput";
|
|
213
|
+
const _SMO = "SearchMessagesOutput";
|
|
214
|
+
const _SMOe = "SendMessageOutput";
|
|
206
215
|
const _SMR = "SendMessageReaction";
|
|
207
216
|
const _SMRI = "SendMessageReactionInput";
|
|
208
217
|
const _SMRO = "SendMessageReactionOutput";
|
|
209
|
-
const _SMe = "
|
|
218
|
+
const _SMe = "SearchMessages";
|
|
219
|
+
const _SMen = "SendMessage";
|
|
210
220
|
const _SNFE = "SectionNotFoundException";
|
|
211
221
|
const _SSE = "StreamServiceException";
|
|
212
222
|
const _SSM = "SendSystemMessage";
|
|
@@ -255,6 +265,7 @@ const _a = "assignee";
|
|
|
255
265
|
const _aI = "assigneeId";
|
|
256
266
|
const _aM = "addedMembers";
|
|
257
267
|
const _aR = "autoRecord";
|
|
268
|
+
const _aT = "attachmentTypes";
|
|
258
269
|
const _ac = "access";
|
|
259
270
|
const _act = "action";
|
|
260
271
|
const _acti = "actions";
|
|
@@ -301,12 +312,14 @@ const _for = "force";
|
|
|
301
312
|
const _fr = "from";
|
|
302
313
|
const _g = "giphy";
|
|
303
314
|
const _h = "handler";
|
|
315
|
+
const _hA = "hasAttachments";
|
|
304
316
|
const _hE = "httpError";
|
|
305
317
|
const _hH = "httpHeader";
|
|
306
318
|
const _hHi = "hideHistory";
|
|
307
319
|
const _hQ = "httpQuery";
|
|
308
320
|
const _he = "height";
|
|
309
321
|
const _hi = "hidden";
|
|
322
|
+
const _hig = "highlights";
|
|
310
323
|
const _ht = "http";
|
|
311
324
|
const _i = "id";
|
|
312
325
|
const _iM = "initialMessage";
|
|
@@ -336,6 +349,7 @@ const _mMJ = "multipleMembersJoined";
|
|
|
336
349
|
const _mT = "messageType";
|
|
337
350
|
const _mTI = "memberToInvite";
|
|
338
351
|
const _mTIe = "membersToInvite";
|
|
352
|
+
const _mTi = "mimeTypes";
|
|
339
353
|
const _mU = "mutedUntil";
|
|
340
354
|
const _mUC = "mentionUnreadCount";
|
|
341
355
|
const _mUMC = "mutedUnreadMessageCount";
|
|
@@ -359,12 +373,14 @@ const _pA = "pinnedAt";
|
|
|
359
373
|
const _pB = "pinnedBy";
|
|
360
374
|
const _pC = "pictureColor";
|
|
361
375
|
const _pDU = "presignedDownloadUrl";
|
|
376
|
+
const _pMI = "pinnedMessageIds";
|
|
362
377
|
const _pUU = "presignedUploadUrl";
|
|
363
378
|
const _ph = "phone";
|
|
364
379
|
const _pi = "picture";
|
|
365
380
|
const _pin = "pinned";
|
|
366
381
|
const _pt = "ptt";
|
|
367
382
|
const _q = "quote";
|
|
383
|
+
const _q_ = "q";
|
|
368
384
|
const _qu = "query";
|
|
369
385
|
const _r = "reason";
|
|
370
386
|
const _rA = "retryAfter";
|
|
@@ -378,6 +394,7 @@ const _rN = "recipientNumber";
|
|
|
378
394
|
const _re = "read";
|
|
379
395
|
const _reg = "region";
|
|
380
396
|
const _rep = "reply";
|
|
397
|
+
const _res = "results";
|
|
381
398
|
const _ro = "role";
|
|
382
399
|
const _s = "smithy.ts.sdk.synthetic.wildix.stream";
|
|
383
400
|
const _sI = "sectionId";
|
|
@@ -395,12 +412,14 @@ const _si = "silent";
|
|
|
395
412
|
const _siz = "size";
|
|
396
413
|
const _sm = "sms";
|
|
397
414
|
const _so = "source";
|
|
415
|
+
const _sor = "sort";
|
|
398
416
|
const _st = "start";
|
|
399
417
|
const _sta = "status";
|
|
400
418
|
const _su = "subject";
|
|
401
419
|
const _sum = "summary";
|
|
402
420
|
const _sy = "system";
|
|
403
421
|
const _t = "text";
|
|
422
|
+
const _tC = "totalCount";
|
|
404
423
|
const _tI = "targetId";
|
|
405
424
|
const _tL = "transcriptionLanguage";
|
|
406
425
|
const _tRI = "targetRouteId";
|
|
@@ -604,8 +623,8 @@ export var ButtonReplyHandler$ = [3, n1, _BRH,
|
|
|
604
623
|
];
|
|
605
624
|
export var Channel$ = [3, n1, _C,
|
|
606
625
|
0,
|
|
607
|
-
[_cI, _cT, _mC, _cA, _cB, _cV, _lAA, _uA, _lM, _co, _k, _kT, _kV, _kSN, _kDS, _ser, _sR, _te, _ex, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
608
|
-
[0, 0, 1, 0, 0, 1, 0, 0, () => LastMessagePreview$, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, () => ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2], 7
|
|
626
|
+
[_cI, _cT, _mC, _cA, _cB, _cV, _lAA, _uA, _lM, _co, _k, _kT, _kV, _kSN, _kDS, _ser, _sR, _te, _ex, _pMI, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
627
|
+
[0, 0, 1, 0, 0, 1, 0, 0, () => LastMessagePreview$, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 64 | 0, 0, 0, 0, 0, 0, 2, () => ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2], 7
|
|
609
628
|
];
|
|
610
629
|
export var ChannelContext$ = [3, n1, _CC,
|
|
611
630
|
0,
|
|
@@ -884,8 +903,8 @@ export var HideChannelOutput$ = [3, n1, _HCO,
|
|
|
884
903
|
];
|
|
885
904
|
export var InboxChannel$ = [3, n1, _IC,
|
|
886
905
|
0,
|
|
887
|
-
[_cI, _cT, _mC, _cA, _cB, _cV, _lAA, _in, _uA, _lM, _co, _k, _kT, _kV, _kSN, _kDS, _ser, _sR, _te, _ex, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
888
|
-
[0, 0, 1, 0, 0, 1, 0, () => InboxState$, 0, () => LastMessagePreview$, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, () => ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2], 8
|
|
906
|
+
[_cI, _cT, _mC, _cA, _cB, _cV, _lAA, _in, _uA, _lM, _co, _k, _kT, _kV, _kSN, _kDS, _ser, _sR, _te, _ex, _pMI, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
907
|
+
[0, 0, 1, 0, 0, 1, 0, () => InboxState$, 0, () => LastMessagePreview$, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 64 | 0, 0, 0, 0, 0, 0, 2, () => ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2], 8
|
|
889
908
|
];
|
|
890
909
|
export var InboxState$ = [3, n1, _IS,
|
|
891
910
|
0,
|
|
@@ -1157,6 +1176,36 @@ export var RenameSectionOutput$ = [3, n1, _RSO,
|
|
|
1157
1176
|
[_sec],
|
|
1158
1177
|
[() => Section$], 1
|
|
1159
1178
|
];
|
|
1179
|
+
export var SearchChannelHit$ = [3, n1, _SCH,
|
|
1180
|
+
0,
|
|
1181
|
+
[_ch, _hig],
|
|
1182
|
+
[() => Channel$, 64 | 0], 1
|
|
1183
|
+
];
|
|
1184
|
+
export var SearchChannelsInput$ = [3, n1, _SCI,
|
|
1185
|
+
0,
|
|
1186
|
+
[_cIo, _uI, _q_, _mI, _cT, _siz, _cu, _sor],
|
|
1187
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _q_ }], [0, { [_hQ]: _mI }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _siz }], [0, { [_hQ]: _cu }], [0, { [_hQ]: _sor }]]
|
|
1188
|
+
];
|
|
1189
|
+
export var SearchChannelsOutput$ = [3, n1, _SCO,
|
|
1190
|
+
0,
|
|
1191
|
+
[_res, _nC],
|
|
1192
|
+
[() => SearchChannelHitList, 0], 1
|
|
1193
|
+
];
|
|
1194
|
+
export var SearchMessageHit$ = [3, n1, _SMH,
|
|
1195
|
+
0,
|
|
1196
|
+
[_cI, _m, _hig],
|
|
1197
|
+
[0, () => Message$, 64 | 0], 2
|
|
1198
|
+
];
|
|
1199
|
+
export var SearchMessagesInput$ = [3, n1, _SMI,
|
|
1200
|
+
0,
|
|
1201
|
+
[_cIo, _uI, _q_, _cI, _hA, _aT, _mTi, _siz, _cu, _sor],
|
|
1202
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _q_ }], [0, { [_hQ]: _cI }], [2, { [_hQ]: _hA }], [64 | 0, { [_hQ]: _aT }], [64 | 0, { [_hQ]: _mTi }], [1, { [_hQ]: _siz }], [0, { [_hQ]: _cu }], [0, { [_hQ]: _sor }]]
|
|
1203
|
+
];
|
|
1204
|
+
export var SearchMessagesOutput$ = [3, n1, _SMO,
|
|
1205
|
+
0,
|
|
1206
|
+
[_res, _tC, _nC],
|
|
1207
|
+
[() => SearchMessageHitList, 1, 0], 1
|
|
1208
|
+
];
|
|
1160
1209
|
export var Section$ = [3, n1, _S,
|
|
1161
1210
|
0,
|
|
1162
1211
|
[_sI, _n, _ty, _cC, _uUCC, _uUMC, _mUMC, _uMC],
|
|
@@ -1172,12 +1221,12 @@ export var SendGiphyOutput$ = [3, n1, _SGO,
|
|
|
1172
1221
|
[_m],
|
|
1173
1222
|
[() => Message$], 1
|
|
1174
1223
|
];
|
|
1175
|
-
export var SendMessageInput$ = [3, n1,
|
|
1224
|
+
export var SendMessageInput$ = [3, n1, _SMIe,
|
|
1176
1225
|
0,
|
|
1177
1226
|
[_cI, _cIo, _uI, _t, _el, _att, _q, _fo, _ma, _si, _w, _wS, _sm, _sS, _mIe, _men, _mT],
|
|
1178
1227
|
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, () => ElementsList, () => MessageAttachmentRequestList, () => MessageQuoteRef$, () => MessageForwardRef$, 2, 2, 2, 0, 2, 0, 0, 64 | 0, 0], 1
|
|
1179
1228
|
];
|
|
1180
|
-
export var SendMessageOutput$ = [3, n1,
|
|
1229
|
+
export var SendMessageOutput$ = [3, n1, _SMOe,
|
|
1181
1230
|
0,
|
|
1182
1231
|
[_m],
|
|
1183
1232
|
[() => Message$], 1
|
|
@@ -1222,12 +1271,12 @@ export var SendTypingStopOutput$ = [3, n1, _STSOe,
|
|
|
1222
1271
|
[],
|
|
1223
1272
|
[]
|
|
1224
1273
|
];
|
|
1225
|
-
export var ShowChannelInput$ = [3, n1,
|
|
1274
|
+
export var ShowChannelInput$ = [3, n1, _SCIh,
|
|
1226
1275
|
0,
|
|
1227
1276
|
[_cI, _cIo, _uI],
|
|
1228
1277
|
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1229
1278
|
];
|
|
1230
|
-
export var ShowChannelOutput$ = [3, n1,
|
|
1279
|
+
export var ShowChannelOutput$ = [3, n1, _SCOh,
|
|
1231
1280
|
0,
|
|
1232
1281
|
[],
|
|
1233
1282
|
[]
|
|
@@ -1320,9 +1369,11 @@ export var WhatsAppClosedSystemMessage$ = [3, n1, _WACSM,
|
|
|
1320
1369
|
var ListTemplateParameter = [1, n3, _LTP,
|
|
1321
1370
|
0, () => TemplateParameter$
|
|
1322
1371
|
];
|
|
1372
|
+
var StringList = 64 | 0;
|
|
1323
1373
|
var ActionsElementsList = [1, n1, _AEL,
|
|
1324
1374
|
0, () => ActionElement$
|
|
1325
1375
|
];
|
|
1376
|
+
var AttachmentTypeList = 64 | 0;
|
|
1326
1377
|
var ChannelContextEventAttendeeList = [1, n1, _CCEAL,
|
|
1327
1378
|
0, () => ChannelContextEventAttendee$
|
|
1328
1379
|
];
|
|
@@ -1356,9 +1407,17 @@ var MessageList = [1, n1, _ML,
|
|
|
1356
1407
|
0, () => Message$
|
|
1357
1408
|
];
|
|
1358
1409
|
var MessageUnsetFieldsList = 64 | 0;
|
|
1410
|
+
var MimeTypeList = 64 | 0;
|
|
1411
|
+
var PinnedMessageIdList = 64 | 0;
|
|
1359
1412
|
var ReactionList = [1, n1, _RL,
|
|
1360
1413
|
0, () => Reaction$
|
|
1361
1414
|
];
|
|
1415
|
+
var SearchChannelHitList = [1, n1, _SCHL,
|
|
1416
|
+
0, () => SearchChannelHit$
|
|
1417
|
+
];
|
|
1418
|
+
var SearchMessageHitList = [1, n1, _SMHL,
|
|
1419
|
+
0, () => SearchMessageHit$
|
|
1420
|
+
];
|
|
1362
1421
|
var SectionIdList = 64 | 0;
|
|
1363
1422
|
var SectionList = [1, n1, _SL,
|
|
1364
1423
|
0, () => Section$
|
|
@@ -1536,10 +1595,16 @@ export var RemoveChannelFromSection$ = [9, n1, _RCFS,
|
|
|
1536
1595
|
export var RenameSection$ = [9, n1, _RS,
|
|
1537
1596
|
{ [_ht]: ["PATCH", "/api/v1/sections/{sectionId}", 200] }, () => RenameSectionInput$, () => RenameSectionOutput$
|
|
1538
1597
|
];
|
|
1598
|
+
export var SearchChannels$ = [9, n1, _SC,
|
|
1599
|
+
{ [_ht]: ["GET", "/api/v1/search/channels", 200] }, () => SearchChannelsInput$, () => SearchChannelsOutput$
|
|
1600
|
+
];
|
|
1601
|
+
export var SearchMessages$ = [9, n1, _SMe,
|
|
1602
|
+
{ [_ht]: ["GET", "/api/v1/search/messages", 200] }, () => SearchMessagesInput$, () => SearchMessagesOutput$
|
|
1603
|
+
];
|
|
1539
1604
|
export var SendGiphy$ = [9, n1, _SG,
|
|
1540
1605
|
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/giphys", 200] }, () => SendGiphyInput$, () => SendGiphyOutput$
|
|
1541
1606
|
];
|
|
1542
|
-
export var SendMessage$ = [9, n1,
|
|
1607
|
+
export var SendMessage$ = [9, n1, _SMen,
|
|
1543
1608
|
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/messages", 200] }, () => SendMessageInput$, () => SendMessageOutput$
|
|
1544
1609
|
];
|
|
1545
1610
|
export var SendMessageReaction$ = [9, n1, _SMR,
|
|
@@ -1554,7 +1619,7 @@ export var SendTypingStart$ = [9, n1, _STS,
|
|
|
1554
1619
|
export var SendTypingStop$ = [9, n1, _STSe,
|
|
1555
1620
|
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/typing/stop", 200] }, () => SendTypingStopInput$, () => SendTypingStopOutput$
|
|
1556
1621
|
];
|
|
1557
|
-
export var ShowChannel$ = [9, n1,
|
|
1622
|
+
export var ShowChannel$ = [9, n1, _SCh,
|
|
1558
1623
|
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/show", 204] }, () => ShowChannelInput$, () => ShowChannelOutput$
|
|
1559
1624
|
];
|
|
1560
1625
|
export var UnmuteChannel$ = [9, n1, _UC,
|
|
@@ -44,6 +44,8 @@ import { type PinMessageCommandInput, type PinMessageCommandOutput } from "./com
|
|
|
44
44
|
import { type QueryChannelsCommandInput, type QueryChannelsCommandOutput } from "./commands/QueryChannelsCommand";
|
|
45
45
|
import { type RemoveChannelFromSectionCommandInput, type RemoveChannelFromSectionCommandOutput } from "./commands/RemoveChannelFromSectionCommand";
|
|
46
46
|
import { type RenameSectionCommandInput, type RenameSectionCommandOutput } from "./commands/RenameSectionCommand";
|
|
47
|
+
import { type SearchChannelsCommandInput, type SearchChannelsCommandOutput } from "./commands/SearchChannelsCommand";
|
|
48
|
+
import { type SearchMessagesCommandInput, type SearchMessagesCommandOutput } from "./commands/SearchMessagesCommand";
|
|
47
49
|
import { type SendGiphyCommandInput, type SendGiphyCommandOutput } from "./commands/SendGiphyCommand";
|
|
48
50
|
import { type SendMessageCommandInput, type SendMessageCommandOutput } from "./commands/SendMessageCommand";
|
|
49
51
|
import { type SendMessageReactionCommandInput, type SendMessageReactionCommandOutput } from "./commands/SendMessageReactionCommand";
|
|
@@ -336,6 +338,20 @@ export interface StreamService {
|
|
|
336
338
|
renameSection(args: RenameSectionCommandInput, options?: __HttpHandlerOptions): Promise<RenameSectionCommandOutput>;
|
|
337
339
|
renameSection(args: RenameSectionCommandInput, cb: (err: any, data?: RenameSectionCommandOutput) => void): void;
|
|
338
340
|
renameSection(args: RenameSectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenameSectionCommandOutput) => void): void;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link SearchChannelsCommand}
|
|
343
|
+
*/
|
|
344
|
+
searchChannels(): Promise<SearchChannelsCommandOutput>;
|
|
345
|
+
searchChannels(args: SearchChannelsCommandInput, options?: __HttpHandlerOptions): Promise<SearchChannelsCommandOutput>;
|
|
346
|
+
searchChannels(args: SearchChannelsCommandInput, cb: (err: any, data?: SearchChannelsCommandOutput) => void): void;
|
|
347
|
+
searchChannels(args: SearchChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchChannelsCommandOutput) => void): void;
|
|
348
|
+
/**
|
|
349
|
+
* @see {@link SearchMessagesCommand}
|
|
350
|
+
*/
|
|
351
|
+
searchMessages(): Promise<SearchMessagesCommandOutput>;
|
|
352
|
+
searchMessages(args: SearchMessagesCommandInput, options?: __HttpHandlerOptions): Promise<SearchMessagesCommandOutput>;
|
|
353
|
+
searchMessages(args: SearchMessagesCommandInput, cb: (err: any, data?: SearchMessagesCommandOutput) => void): void;
|
|
354
|
+
searchMessages(args: SearchMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchMessagesCommandOutput) => void): void;
|
|
339
355
|
/**
|
|
340
356
|
* @see {@link SendGiphyCommand}
|
|
341
357
|
*/
|
|
@@ -50,6 +50,8 @@ import type { PinMessageCommandInput, PinMessageCommandOutput } from "./commands
|
|
|
50
50
|
import type { QueryChannelsCommandInput, QueryChannelsCommandOutput } from "./commands/QueryChannelsCommand";
|
|
51
51
|
import type { RemoveChannelFromSectionCommandInput, RemoveChannelFromSectionCommandOutput } from "./commands/RemoveChannelFromSectionCommand";
|
|
52
52
|
import type { RenameSectionCommandInput, RenameSectionCommandOutput } from "./commands/RenameSectionCommand";
|
|
53
|
+
import type { SearchChannelsCommandInput, SearchChannelsCommandOutput } from "./commands/SearchChannelsCommand";
|
|
54
|
+
import type { SearchMessagesCommandInput, SearchMessagesCommandOutput } from "./commands/SearchMessagesCommand";
|
|
53
55
|
import type { SendGiphyCommandInput, SendGiphyCommandOutput } from "./commands/SendGiphyCommand";
|
|
54
56
|
import type { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
|
|
55
57
|
import type { SendMessageReactionCommandInput, SendMessageReactionCommandOutput } from "./commands/SendMessageReactionCommand";
|
|
@@ -69,11 +71,11 @@ export { __Client };
|
|
|
69
71
|
/**
|
|
70
72
|
* @public
|
|
71
73
|
*/
|
|
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;
|
|
74
|
+
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;
|
|
73
75
|
/**
|
|
74
76
|
* @public
|
|
75
77
|
*/
|
|
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;
|
|
78
|
+
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;
|
|
77
79
|
/**
|
|
78
80
|
* @public
|
|
79
81
|
*/
|
|
@@ -24,9 +24,7 @@ export interface AddChannelMemberCommandOutput extends AddChannelMemberOutput, _
|
|
|
24
24
|
declare const AddChannelMemberCommand_base: {
|
|
25
25
|
new (input: AddChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMemberCommandInput, AddChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: AddChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMemberCommandInput, AddChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Adds one member to a channel.
|
|
@@ -24,9 +24,7 @@ export interface AddChannelMembersCommandOutput extends AddChannelMembersOutput,
|
|
|
24
24
|
declare const AddChannelMembersCommand_base: {
|
|
25
25
|
new (input: AddChannelMembersCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMembersCommandInput, AddChannelMembersCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: AddChannelMembersCommandInput): import("@smithy/core/client").CommandImpl<AddChannelMembersCommandInput, AddChannelMembersCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Adds members to a channel.
|
|
@@ -24,9 +24,7 @@ export interface AssignChannelCommandOutput extends AssignChannelOutput, __Metad
|
|
|
24
24
|
declare const AssignChannelCommand_base: {
|
|
25
25
|
new (input: AssignChannelCommandInput): import("@smithy/core/client").CommandImpl<AssignChannelCommandInput, AssignChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: AssignChannelCommandInput): import("@smithy/core/client").CommandImpl<AssignChannelCommandInput, AssignChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Assigns a channel to a service and/or assignee.
|
|
@@ -24,9 +24,7 @@ export interface CreateGroupChannelCommandOutput extends CreateGroupChannelOutpu
|
|
|
24
24
|
declare const CreateGroupChannelCommand_base: {
|
|
25
25
|
new (input: CreateGroupChannelCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupChannelCommandInput, CreateGroupChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [CreateGroupChannelCommandInput]): import("@smithy/core/client").CommandImpl<CreateGroupChannelCommandInput, CreateGroupChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Creates a new group channel with specified members and members to invite.
|
|
@@ -124,6 +122,9 @@ declare const CreateGroupChannelCommand_base: {
|
|
|
124
122
|
* // serviceRecipient: "STRING_VALUE",
|
|
125
123
|
* // telephony: true || false,
|
|
126
124
|
* // external: true || false,
|
|
125
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
126
|
+
* // "STRING_VALUE",
|
|
127
|
+
* // ],
|
|
127
128
|
* // subject: "STRING_VALUE",
|
|
128
129
|
* // description: "STRING_VALUE",
|
|
129
130
|
* // picture: "STRING_VALUE",
|
|
@@ -24,9 +24,7 @@ export interface CreateKiteChannelCommandOutput extends CreateKiteChannelOutput,
|
|
|
24
24
|
declare const CreateKiteChannelCommand_base: {
|
|
25
25
|
new (input: CreateKiteChannelCommandInput): import("@smithy/core/client").CommandImpl<CreateKiteChannelCommandInput, CreateKiteChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: CreateKiteChannelCommandInput): import("@smithy/core/client").CommandImpl<CreateKiteChannelCommandInput, CreateKiteChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Creates a new Kite channel for a widget target or agent email.
|
|
@@ -212,6 +210,9 @@ declare const CreateKiteChannelCommand_base: {
|
|
|
212
210
|
* // serviceRecipient: "STRING_VALUE",
|
|
213
211
|
* // telephony: true || false,
|
|
214
212
|
* // external: true || false,
|
|
213
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
214
|
+
* // "STRING_VALUE",
|
|
215
|
+
* // ],
|
|
215
216
|
* // subject: "STRING_VALUE",
|
|
216
217
|
* // description: "STRING_VALUE",
|
|
217
218
|
* // picture: "STRING_VALUE",
|
|
@@ -24,9 +24,7 @@ export interface CreateSectionCommandOutput extends CreateSectionOutput, __Metad
|
|
|
24
24
|
declare const CreateSectionCommand_base: {
|
|
25
25
|
new (input: CreateSectionCommandInput): import("@smithy/core/client").CommandImpl<CreateSectionCommandInput, CreateSectionCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: CreateSectionCommandInput): import("@smithy/core/client").CommandImpl<CreateSectionCommandInput, CreateSectionCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Creates a custom inbox section.
|
|
@@ -24,9 +24,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelOutput, __Metad
|
|
|
24
24
|
declare const DeleteChannelCommand_base: {
|
|
25
25
|
new (input: DeleteChannelCommandInput): import("@smithy/core/client").CommandImpl<DeleteChannelCommandInput, DeleteChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: DeleteChannelCommandInput): import("@smithy/core/client").CommandImpl<DeleteChannelCommandInput, DeleteChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Deletes a channel. Idempotent when the channel is already gone.
|
|
@@ -24,9 +24,7 @@ export interface DeleteChannelMemberCommandOutput extends DeleteChannelMemberOut
|
|
|
24
24
|
declare const DeleteChannelMemberCommand_base: {
|
|
25
25
|
new (input: DeleteChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<DeleteChannelMemberCommandInput, DeleteChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: DeleteChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<DeleteChannelMemberCommandInput, DeleteChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Removes one member from a channel.
|
|
@@ -24,9 +24,7 @@ export interface DeleteMessageCommandOutput extends DeleteMessageOutput, __Metad
|
|
|
24
24
|
declare const DeleteMessageCommand_base: {
|
|
25
25
|
new (input: DeleteMessageCommandInput): import("@smithy/core/client").CommandImpl<DeleteMessageCommandInput, DeleteMessageCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: DeleteMessageCommandInput): import("@smithy/core/client").CommandImpl<DeleteMessageCommandInput, DeleteMessageCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Tombstones one message. The row stays in place so timeline ordering is stable; clients render the gap as a deleted-message placeholder. Hard purge is owned by retention, not by this endpoint. Only the sender or an admin may delete.
|
|
@@ -24,9 +24,7 @@ export interface DeleteMessageReactionCommandOutput extends DeleteMessageReactio
|
|
|
24
24
|
declare const DeleteMessageReactionCommand_base: {
|
|
25
25
|
new (input: DeleteMessageReactionCommandInput): import("@smithy/core/client").CommandImpl<DeleteMessageReactionCommandInput, DeleteMessageReactionCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: DeleteMessageReactionCommandInput): import("@smithy/core/client").CommandImpl<DeleteMessageReactionCommandInput, DeleteMessageReactionCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Removes the current user's reaction of `<type>` on one message. Duplicate removes are absorbed and only the first apply advances `messageVersion`.
|
|
@@ -24,9 +24,7 @@ export interface DeleteSectionCommandOutput extends DeleteSectionOutput, __Metad
|
|
|
24
24
|
declare const DeleteSectionCommand_base: {
|
|
25
25
|
new (input: DeleteSectionCommandInput): import("@smithy/core/client").CommandImpl<DeleteSectionCommandInput, DeleteSectionCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: DeleteSectionCommandInput): import("@smithy/core/client").CommandImpl<DeleteSectionCommandInput, DeleteSectionCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Deletes a custom inbox section.
|
|
@@ -24,9 +24,7 @@ export interface GetChannelCommandOutput extends GetChannelOutput, __MetadataBea
|
|
|
24
24
|
declare const GetChannelCommand_base: {
|
|
25
25
|
new (input: GetChannelCommandInput): import("@smithy/core/client").CommandImpl<GetChannelCommandInput, GetChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: GetChannelCommandInput): import("@smithy/core/client").CommandImpl<GetChannelCommandInput, GetChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Returns one channel with per-user inbox state and last-message preview.
|
|
@@ -73,6 +71,9 @@ declare const GetChannelCommand_base: {
|
|
|
73
71
|
* // serviceRecipient: "STRING_VALUE",
|
|
74
72
|
* // telephony: true || false,
|
|
75
73
|
* // external: true || false,
|
|
74
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
75
|
+
* // "STRING_VALUE",
|
|
76
|
+
* // ],
|
|
76
77
|
* // subject: "STRING_VALUE",
|
|
77
78
|
* // description: "STRING_VALUE",
|
|
78
79
|
* // picture: "STRING_VALUE",
|
|
@@ -24,9 +24,7 @@ export interface GetChannelMemberCommandOutput extends GetChannelMemberOutput, _
|
|
|
24
24
|
declare const GetChannelMemberCommand_base: {
|
|
25
25
|
new (input: GetChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<GetChannelMemberCommandInput, GetChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: GetChannelMemberCommandInput): import("@smithy/core/client").CommandImpl<GetChannelMemberCommandInput, GetChannelMemberCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Returns one channel member.
|
|
@@ -24,9 +24,7 @@ export interface GetDirectChannelIdCommandOutput extends GetDirectChannelIdOutpu
|
|
|
24
24
|
declare const GetDirectChannelIdCommand_base: {
|
|
25
25
|
new (input: GetDirectChannelIdCommandInput): import("@smithy/core/client").CommandImpl<GetDirectChannelIdCommandInput, GetDirectChannelIdCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [GetDirectChannelIdCommandInput]): import("@smithy/core/client").CommandImpl<GetDirectChannelIdCommandInput, GetDirectChannelIdCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Resolves the channel id of a direct channel without creating it.
|
|
@@ -24,9 +24,7 @@ export interface GetFilePresignedDownloadUrlCommandOutput extends GetFilePresign
|
|
|
24
24
|
declare const GetFilePresignedDownloadUrlCommand_base: {
|
|
25
25
|
new (input: GetFilePresignedDownloadUrlCommandInput): import("@smithy/core/client").CommandImpl<GetFilePresignedDownloadUrlCommandInput, GetFilePresignedDownloadUrlCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: GetFilePresignedDownloadUrlCommandInput): import("@smithy/core/client").CommandImpl<GetFilePresignedDownloadUrlCommandInput, GetFilePresignedDownloadUrlCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Returns a presigned URL for downloading a file attached to a message.
|
|
@@ -24,9 +24,7 @@ export interface GetInboxCommandOutput extends GetInboxOutput, __MetadataBearer
|
|
|
24
24
|
declare const GetInboxCommand_base: {
|
|
25
25
|
new (input: GetInboxCommandInput): import("@smithy/core/client").CommandImpl<GetInboxCommandInput, GetInboxCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [GetInboxCommandInput]): import("@smithy/core/client").CommandImpl<GetInboxCommandInput, GetInboxCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Returns the user's main-page inbox: recent channels with per-user state and last-message preview, plus per-section channel and unread counters. Not paginated; use `ListChannels` to page further.
|
|
@@ -73,6 +71,9 @@ declare const GetInboxCommand_base: {
|
|
|
73
71
|
* // serviceRecipient: "STRING_VALUE",
|
|
74
72
|
* // telephony: true || false,
|
|
75
73
|
* // external: true || false,
|
|
74
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
75
|
+
* // "STRING_VALUE",
|
|
76
|
+
* // ],
|
|
76
77
|
* // subject: "STRING_VALUE",
|
|
77
78
|
* // description: "STRING_VALUE",
|
|
78
79
|
* // picture: "STRING_VALUE",
|
|
@@ -24,9 +24,7 @@ export interface GetMessageCommandOutput extends GetMessageOutput, __MetadataBea
|
|
|
24
24
|
declare const GetMessageCommand_base: {
|
|
25
25
|
new (input: GetMessageCommandInput): import("@smithy/core/client").CommandImpl<GetMessageCommandInput, GetMessageCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: GetMessageCommandInput): import("@smithy/core/client").CommandImpl<GetMessageCommandInput, GetMessageCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Returns a single message by id. Used by goto-message to resolve a `messageId` to its `timelineSeq` before loading a window with `ListMessages`.
|
|
@@ -24,9 +24,7 @@ export interface GetOrCreateDirectChannelCommandOutput extends GetOrCreateDirect
|
|
|
24
24
|
declare const GetOrCreateDirectChannelCommand_base: {
|
|
25
25
|
new (input: GetOrCreateDirectChannelCommandInput): import("@smithy/core/client").CommandImpl<GetOrCreateDirectChannelCommandInput, GetOrCreateDirectChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [GetOrCreateDirectChannelCommandInput]): import("@smithy/core/client").CommandImpl<GetOrCreateDirectChannelCommandInput, GetOrCreateDirectChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Gets or creates a direct channel between the current user and another member.
|
|
@@ -79,6 +77,9 @@ declare const GetOrCreateDirectChannelCommand_base: {
|
|
|
79
77
|
* // serviceRecipient: "STRING_VALUE",
|
|
80
78
|
* // telephony: true || false,
|
|
81
79
|
* // external: true || false,
|
|
80
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
82
83
|
* // subject: "STRING_VALUE",
|
|
83
84
|
* // description: "STRING_VALUE",
|
|
84
85
|
* // picture: "STRING_VALUE",
|
|
@@ -24,9 +24,7 @@ export interface GetOrCreateSmsChannelCommandOutput extends GetOrCreateSmsChanne
|
|
|
24
24
|
declare const GetOrCreateSmsChannelCommand_base: {
|
|
25
25
|
new (input: GetOrCreateSmsChannelCommandInput): import("@smithy/core/client").CommandImpl<GetOrCreateSmsChannelCommandInput, GetOrCreateSmsChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: GetOrCreateSmsChannelCommandInput): import("@smithy/core/client").CommandImpl<GetOrCreateSmsChannelCommandInput, GetOrCreateSmsChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Gets or creates an SMS channel.
|
|
@@ -76,6 +74,9 @@ declare const GetOrCreateSmsChannelCommand_base: {
|
|
|
76
74
|
* // serviceRecipient: "STRING_VALUE",
|
|
77
75
|
* // telephony: true || false,
|
|
78
76
|
* // external: true || false,
|
|
77
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
79
80
|
* // subject: "STRING_VALUE",
|
|
80
81
|
* // description: "STRING_VALUE",
|
|
81
82
|
* // picture: "STRING_VALUE",
|
|
@@ -24,9 +24,7 @@ export interface GetOrCreateTelephonyChannelCommandOutput extends GetOrCreateTel
|
|
|
24
24
|
declare const GetOrCreateTelephonyChannelCommand_base: {
|
|
25
25
|
new (input: GetOrCreateTelephonyChannelCommandInput): import("@smithy/core/client").CommandImpl<GetOrCreateTelephonyChannelCommandInput, GetOrCreateTelephonyChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: GetOrCreateTelephonyChannelCommandInput): import("@smithy/core/client").CommandImpl<GetOrCreateTelephonyChannelCommandInput, GetOrCreateTelephonyChannelCommandOutput, StreamServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Gets or creates a telephony channel.
|
|
@@ -75,6 +73,9 @@ declare const GetOrCreateTelephonyChannelCommand_base: {
|
|
|
75
73
|
* // serviceRecipient: "STRING_VALUE",
|
|
76
74
|
* // telephony: true || false,
|
|
77
75
|
* // external: true || false,
|
|
76
|
+
* // pinnedMessageIds: [ // PinnedMessageIdList
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
78
79
|
* // subject: "STRING_VALUE",
|
|
79
80
|
* // description: "STRING_VALUE",
|
|
80
81
|
* // picture: "STRING_VALUE",
|