@salesforce/lds-adapters-platform-slack-bridge 1.332.0-dev1 → 1.332.0-dev11
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/es/es2018/platform-slack-bridge.js +3769 -1470
- package/dist/es/es2018/types/src/generated/adapters/deleteSlackConversationMember.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackConversationMember.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackConversationMembers.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackRecordChannelInfo.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackSearchConversation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackSearchUser.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/adapters/postSlackConversationMark.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/adapters/postSlackConversationMembers.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/adapters/postSlackRecordChannelInfos.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +8 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +16 -1
- package/dist/es/es2018/types/src/generated/resources/deleteConnectSlackbridgeTeamChannelMembersByChannelIdAndSlackUserIdAndTeamId.d.ts +14 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeRecord_channelsByRelatedRecordId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamChannelMembersByChannelIdAndSlackUserIdAndTeamId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamChannelMembersByChannelIdAndTeamId.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamSearchConversationsByTeamId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamSearchUsersByTeamId.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectSlackbridgeRecord_channels.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectSlackbridgeTeamChannelMarkByChannelIdAndTeamId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectSlackbridgeTeamChannelMembersByChannelIdAndTeamId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeContentVersionOutputRepresentation.d.ts +6 -5
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationInfoOutputRepresentation.d.ts +34 -22
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationInfosOutputRepresentation.d.ts +14 -5
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationMarkOutputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationMemberOutputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationMembersInputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationMembersOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationOutputRepresentation.d.ts +5 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeEmojiOutputRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/SlackBridgeEmojisOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeFileOutputRepresentation.d.ts +14 -14
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMessageOutputRepresentation.d.ts +21 -7
- package/dist/es/es2018/types/src/generated/types/SlackBridgeReactionOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeRecordChannelInfoInputRepresentation.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeRecordChannelInfoOutputRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfoOutputRepresentation.d.ts +16 -10
- package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfosOutputRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +4730 -2258
- package/src/raml/api.raml +379 -117
- package/src/raml/luvio.raml +85 -26
package/src/raml/api.raml
CHANGED
|
@@ -53,7 +53,7 @@ types:
|
|
|
53
53
|
type: string
|
|
54
54
|
filetype:
|
|
55
55
|
description: File type of the Content Version record
|
|
56
|
-
type: SlackBridgeFileTypeOutputRepresentation
|
|
56
|
+
type: SlackBridgeFileTypeOutputRepresentation | nil
|
|
57
57
|
id:
|
|
58
58
|
description: Id of the Content Version record
|
|
59
59
|
type: string
|
|
@@ -65,7 +65,7 @@ types:
|
|
|
65
65
|
type: string
|
|
66
66
|
versionUrl:
|
|
67
67
|
description: Version URL for the Content Version record
|
|
68
|
-
type: string
|
|
68
|
+
type: string | nil
|
|
69
69
|
SlackBridgeConversationHistoryOutputRepresentation:
|
|
70
70
|
description: Contains the details of segment of a Slack conversation's history
|
|
71
71
|
type: object
|
|
@@ -91,34 +91,34 @@ types:
|
|
|
91
91
|
type: string
|
|
92
92
|
isArchived:
|
|
93
93
|
description: Is this conversation archived?
|
|
94
|
-
type: boolean
|
|
94
|
+
type: boolean | nil
|
|
95
95
|
isChannel:
|
|
96
96
|
description: Is this a channel?
|
|
97
|
-
type: boolean
|
|
97
|
+
type: boolean | nil
|
|
98
98
|
isCustomEmojiSupported:
|
|
99
99
|
description: Is Custom Emoji supported?
|
|
100
100
|
type: boolean | nil
|
|
101
101
|
isGroup:
|
|
102
102
|
description: Is this a group?
|
|
103
|
-
type: boolean
|
|
103
|
+
type: boolean | nil
|
|
104
104
|
isIm:
|
|
105
105
|
description: Is this IM?
|
|
106
|
-
type: boolean
|
|
106
|
+
type: boolean | nil
|
|
107
107
|
isMember:
|
|
108
108
|
description: Is the context User a member of this Conversation?
|
|
109
|
-
type: boolean
|
|
109
|
+
type: boolean | nil
|
|
110
110
|
isOpen:
|
|
111
111
|
description: Is this conversation open?
|
|
112
|
-
type: boolean
|
|
112
|
+
type: boolean | nil
|
|
113
113
|
isPrivate:
|
|
114
114
|
description: Is this conversation private?
|
|
115
|
-
type: boolean
|
|
115
|
+
type: boolean | nil
|
|
116
116
|
isReadOnly:
|
|
117
117
|
description: Is this conversation read-only?
|
|
118
|
-
type: boolean
|
|
118
|
+
type: boolean | nil
|
|
119
119
|
isThreadOnly:
|
|
120
120
|
description: Is this conversation thread-only?
|
|
121
|
-
type: boolean
|
|
121
|
+
type: boolean | nil
|
|
122
122
|
name:
|
|
123
123
|
description: Name of the Conversation
|
|
124
124
|
type: string
|
|
@@ -128,6 +128,10 @@ types:
|
|
|
128
128
|
shouldCacheCustomEmoji:
|
|
129
129
|
description: Should the Custom Emojis be cached?
|
|
130
130
|
type: boolean | nil
|
|
131
|
+
url:
|
|
132
|
+
description: The URL to the channel
|
|
133
|
+
required: false
|
|
134
|
+
type: string
|
|
131
135
|
SlackBridgeConversationInfosOutputRepresentation:
|
|
132
136
|
description: Contains the list of Slack Conversation Information
|
|
133
137
|
type: object
|
|
@@ -139,7 +143,63 @@ types:
|
|
|
139
143
|
type: SlackBridgeConversationInfoOutputRepresentation
|
|
140
144
|
searchString:
|
|
141
145
|
description: String used to search this list of conversations (Optional)
|
|
146
|
+
type: string | nil
|
|
147
|
+
SlackBridgeConversationInputRepresentation:
|
|
148
|
+
description: Representation of a Slack conversation
|
|
149
|
+
type: object
|
|
150
|
+
properties:
|
|
151
|
+
isPrivate:
|
|
152
|
+
description: Flag indicating if the conversation is private
|
|
153
|
+
type: boolean
|
|
154
|
+
name:
|
|
155
|
+
description: Name of the conversation
|
|
156
|
+
type: string
|
|
157
|
+
SlackBridgeConversationMarkOutputRepresentation:
|
|
158
|
+
description: Representation of a successful call to update the read cursor in
|
|
159
|
+
a slack channel.
|
|
160
|
+
type: object
|
|
161
|
+
properties:
|
|
162
|
+
channelId:
|
|
163
|
+
description: Id of the Channel to which this message belongs
|
|
142
164
|
type: string
|
|
165
|
+
messageTs:
|
|
166
|
+
description: The timestamp of the message that was marked read
|
|
167
|
+
type: string
|
|
168
|
+
SlackBridgeConversationMemberOutputRepresentation:
|
|
169
|
+
description: Contains the details of a Slack member for the Slack conversation
|
|
170
|
+
type: object
|
|
171
|
+
properties:
|
|
172
|
+
channelId:
|
|
173
|
+
description: Id of the Channel to which this message belong to
|
|
174
|
+
type: string
|
|
175
|
+
slackUserId:
|
|
176
|
+
description: The Slack user Id of the member of the Slack conversation
|
|
177
|
+
type: string
|
|
178
|
+
SlackBridgeConversationMembersInputRepresentation:
|
|
179
|
+
description: Contains the parameters to post Slack conversation members requests
|
|
180
|
+
type: object
|
|
181
|
+
properties:
|
|
182
|
+
slackUserIds:
|
|
183
|
+
description: List of Slack user ids
|
|
184
|
+
type: array
|
|
185
|
+
items:
|
|
186
|
+
type: string
|
|
187
|
+
SlackBridgeConversationMembersOutputRepresentation:
|
|
188
|
+
description: Contains the details of Slack members for the Slack conversation
|
|
189
|
+
type: object
|
|
190
|
+
properties:
|
|
191
|
+
channelId:
|
|
192
|
+
description: Id of the Channel to which this message belong to
|
|
193
|
+
type: string
|
|
194
|
+
nextCursor:
|
|
195
|
+
description: Used to paginate to the next page by passing this value as the
|
|
196
|
+
cursor parameter in a subsequent request
|
|
197
|
+
type: string | nil
|
|
198
|
+
slackUserIds:
|
|
199
|
+
description: The Slack user Ids of the members of the Slack conversation
|
|
200
|
+
type: array
|
|
201
|
+
items:
|
|
202
|
+
type: string
|
|
143
203
|
SlackBridgeConversationOutputRepresentation:
|
|
144
204
|
description: Contains the details of a Slack Conversation
|
|
145
205
|
type: object
|
|
@@ -197,7 +257,7 @@ types:
|
|
|
197
257
|
properties:
|
|
198
258
|
altText:
|
|
199
259
|
description: Alt text for the Slack Emoji
|
|
200
|
-
type: string
|
|
260
|
+
type: string | nil
|
|
201
261
|
isCustom:
|
|
202
262
|
description: Is this a custom Slack Emoji?
|
|
203
263
|
type: boolean | nil
|
|
@@ -206,10 +266,10 @@ types:
|
|
|
206
266
|
type: string
|
|
207
267
|
unicode:
|
|
208
268
|
description: Unicode for the Slack Emoji
|
|
209
|
-
type: string
|
|
269
|
+
type: string | nil
|
|
210
270
|
url:
|
|
211
271
|
description: Url of the Slack Emoji
|
|
212
|
-
type: string
|
|
272
|
+
type: string | nil
|
|
213
273
|
SlackBridgeEmojisOutputRepresentation:
|
|
214
274
|
description: Contains the list of Slack Emoji
|
|
215
275
|
type: object
|
|
@@ -221,7 +281,7 @@ types:
|
|
|
221
281
|
type: SlackBridgeEmojiOutputRepresentation
|
|
222
282
|
searchString:
|
|
223
283
|
description: String used to search this list of conversations (Optional)
|
|
224
|
-
type: string
|
|
284
|
+
type: string | nil
|
|
225
285
|
SlackBridgeFileInputRepresentation:
|
|
226
286
|
description: Contains the parameters to upload a file to Slack
|
|
227
287
|
type: object
|
|
@@ -260,7 +320,7 @@ types:
|
|
|
260
320
|
properties:
|
|
261
321
|
contentDocument:
|
|
262
322
|
description: Content Document data
|
|
263
|
-
type: SlackBridgeContentDocumentOutputRepresentation
|
|
323
|
+
type: SlackBridgeContentDocumentOutputRepresentation | nil
|
|
264
324
|
filetype:
|
|
265
325
|
description: Type of the File
|
|
266
326
|
type: string
|
|
@@ -275,7 +335,7 @@ types:
|
|
|
275
335
|
type: string
|
|
276
336
|
size:
|
|
277
337
|
description: Size of the File
|
|
278
|
-
type: integer
|
|
338
|
+
type: integer | nil
|
|
279
339
|
slackPermalink:
|
|
280
340
|
description: Slack Permalink for the File
|
|
281
341
|
type: string
|
|
@@ -284,13 +344,13 @@ types:
|
|
|
284
344
|
type: string
|
|
285
345
|
token:
|
|
286
346
|
description: Token used for the File
|
|
287
|
-
type: string
|
|
347
|
+
type: string | nil
|
|
288
348
|
uniqueKey:
|
|
289
349
|
description: Unique Key for the File
|
|
290
|
-
type: string
|
|
350
|
+
type: string | nil
|
|
291
351
|
url:
|
|
292
352
|
description: Slack web URL for the File
|
|
293
|
-
type: string
|
|
353
|
+
type: string | nil
|
|
294
354
|
SlackBridgeFileTypeOutputRepresentation:
|
|
295
355
|
description: Contains the details of FileType
|
|
296
356
|
type: object
|
|
@@ -319,6 +379,22 @@ types:
|
|
|
319
379
|
description: Contains the details of Slack Message
|
|
320
380
|
type: object
|
|
321
381
|
properties:
|
|
382
|
+
attachments:
|
|
383
|
+
description: Message attachments
|
|
384
|
+
type: array
|
|
385
|
+
items:
|
|
386
|
+
type: object
|
|
387
|
+
properties:
|
|
388
|
+
//:
|
|
389
|
+
type: any
|
|
390
|
+
blocks:
|
|
391
|
+
description: Message blocks
|
|
392
|
+
type: array
|
|
393
|
+
items:
|
|
394
|
+
type: object
|
|
395
|
+
properties:
|
|
396
|
+
//:
|
|
397
|
+
type: any
|
|
322
398
|
files:
|
|
323
399
|
description: List of files attached to this message
|
|
324
400
|
type: array
|
|
@@ -329,13 +405,13 @@ types:
|
|
|
329
405
|
type: boolean | nil
|
|
330
406
|
isBroadcast:
|
|
331
407
|
description: Is this a reply also sent to the Channel?
|
|
332
|
-
type: boolean
|
|
408
|
+
type: boolean | nil
|
|
333
409
|
isEditable:
|
|
334
410
|
description: Can this message be edited?
|
|
335
411
|
type: boolean
|
|
336
412
|
isEdited:
|
|
337
413
|
description: Is this an edited message?
|
|
338
|
-
type: boolean
|
|
414
|
+
type: boolean | nil
|
|
339
415
|
latestReplyTimestamp:
|
|
340
416
|
description: Latest Reply timestamp
|
|
341
417
|
type: string | nil
|
|
@@ -372,7 +448,7 @@ types:
|
|
|
372
448
|
type: string | nil
|
|
373
449
|
type:
|
|
374
450
|
description: Type of Message
|
|
375
|
-
type: string
|
|
451
|
+
type: string | nil
|
|
376
452
|
url:
|
|
377
453
|
description: Url for this message
|
|
378
454
|
type: string
|
|
@@ -425,7 +501,7 @@ types:
|
|
|
425
501
|
properties:
|
|
426
502
|
count:
|
|
427
503
|
description: Number of reactions
|
|
428
|
-
type: integer
|
|
504
|
+
type: integer | nil
|
|
429
505
|
name:
|
|
430
506
|
description: Name of the reaction
|
|
431
507
|
type: string
|
|
@@ -456,6 +532,33 @@ types:
|
|
|
456
532
|
description: The id of the Slack team (Workspace or Enterprise Org) where
|
|
457
533
|
this conversation exists
|
|
458
534
|
type: string
|
|
535
|
+
SlackBridgeRecordChannelInfoInputRepresentation:
|
|
536
|
+
description: Representation of a Slack record channel
|
|
537
|
+
type: object
|
|
538
|
+
properties:
|
|
539
|
+
conversationInfo:
|
|
540
|
+
description: The conversation info associated with the record
|
|
541
|
+
type: object
|
|
542
|
+
properties:
|
|
543
|
+
isPrivate:
|
|
544
|
+
description: Is this conversation private?
|
|
545
|
+
type: boolean
|
|
546
|
+
relatedRecordId:
|
|
547
|
+
description: The ID of the Salesforce record associated with the conversation
|
|
548
|
+
type: string
|
|
549
|
+
SlackBridgeRecordChannelInfoOutputRepresentation:
|
|
550
|
+
description: Representation of a Slack record channel
|
|
551
|
+
type: object
|
|
552
|
+
properties:
|
|
553
|
+
conversationInfo:
|
|
554
|
+
description: The conversation info associated with the record
|
|
555
|
+
type: SlackBridgeConversationInfoOutputRepresentation
|
|
556
|
+
relatedRecordId:
|
|
557
|
+
description: The ID of the Salesforce record associated with the conversation
|
|
558
|
+
type: string
|
|
559
|
+
teamId:
|
|
560
|
+
description: The Slack ID of the Slack team
|
|
561
|
+
type: string
|
|
459
562
|
SlackBridgeUpdateMessageInputRepresentation:
|
|
460
563
|
description: Contains the parameters to update a message to Slack
|
|
461
564
|
type: object
|
|
@@ -472,10 +575,13 @@ types:
|
|
|
472
575
|
type: boolean
|
|
473
576
|
displayName:
|
|
474
577
|
description: Display Name of the Slack User
|
|
475
|
-
type: string
|
|
578
|
+
type: string | nil
|
|
579
|
+
email:
|
|
580
|
+
description: Email of the Slack User
|
|
581
|
+
type: string | nil
|
|
476
582
|
image24:
|
|
477
583
|
description: 24x24 version of the Slack User image
|
|
478
|
-
type: string
|
|
584
|
+
type: string | nil
|
|
479
585
|
imageOriginal:
|
|
480
586
|
description: Original version of the Slack User image
|
|
481
587
|
type: string | nil
|
|
@@ -496,7 +602,7 @@ types:
|
|
|
496
602
|
type: string | nil
|
|
497
603
|
realName:
|
|
498
604
|
description: Real Name of the Slack User
|
|
499
|
-
type: string
|
|
605
|
+
type: string | nil
|
|
500
606
|
salesforceUserId:
|
|
501
607
|
description: Id of the related Salesforce User mapped to the Slack User
|
|
502
608
|
type: string | nil
|
|
@@ -508,17 +614,20 @@ types:
|
|
|
508
614
|
type: SlackBridgeEmojiOutputRepresentation | nil
|
|
509
615
|
statusMessage:
|
|
510
616
|
description: Status message of the Slack User
|
|
511
|
-
type: string
|
|
617
|
+
type: string | nil
|
|
512
618
|
teamId:
|
|
513
619
|
description: Slack Workspace Id
|
|
514
620
|
type: string
|
|
621
|
+
title:
|
|
622
|
+
description: Title of the Slack User
|
|
623
|
+
type: string | nil
|
|
515
624
|
SlackBridgeUserInfosOutputRepresentation:
|
|
516
625
|
description: Contains the list of Slack User Information
|
|
517
626
|
type: object
|
|
518
627
|
properties:
|
|
519
628
|
searchString:
|
|
520
629
|
description: String used to search this list of conversations (Optional)
|
|
521
|
-
type: string
|
|
630
|
+
type: string | nil
|
|
522
631
|
userInfos:
|
|
523
632
|
description: List of Slack User Information
|
|
524
633
|
type: array
|
|
@@ -603,97 +712,215 @@ types:
|
|
|
603
712
|
application/json:
|
|
604
713
|
type: SlackBridgeFileInputRepresentation
|
|
605
714
|
(oas-body-name): slackFileUploadRequest
|
|
715
|
+
/record_channels:
|
|
716
|
+
post:
|
|
717
|
+
displayName: postSlackRecordChannelInfos
|
|
718
|
+
description: Create a Slack record channel
|
|
719
|
+
responses:
|
|
720
|
+
'200':
|
|
721
|
+
description: Success
|
|
722
|
+
body:
|
|
723
|
+
application/json:
|
|
724
|
+
type: SlackBridgeRecordChannelInfoOutputRepresentation
|
|
725
|
+
body:
|
|
726
|
+
application/json:
|
|
727
|
+
type: SlackBridgeRecordChannelInfoInputRepresentation
|
|
728
|
+
(oas-body-name): slackRecordChannelInfo
|
|
729
|
+
/record_channels/{relatedRecordId}:
|
|
730
|
+
get:
|
|
731
|
+
displayName: getSlackRecordChannelInfo
|
|
732
|
+
description: Get Slack conversation from the given Workspace and Channel
|
|
733
|
+
responses:
|
|
734
|
+
'200':
|
|
735
|
+
description: Success
|
|
736
|
+
body:
|
|
737
|
+
application/json:
|
|
738
|
+
type: SlackBridgeRecordChannelInfoOutputRepresentation
|
|
739
|
+
uriParameters:
|
|
740
|
+
relatedRecordId:
|
|
741
|
+
description: Id of the record to which the Slack Conversation is related.
|
|
742
|
+
type: string
|
|
743
|
+
required: true
|
|
606
744
|
/team/{teamId}:
|
|
607
|
-
/channel/{channelId}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
'200':
|
|
628
|
-
description: Success
|
|
629
|
-
body:
|
|
630
|
-
application/json:
|
|
631
|
-
type: SlackBridgeMessageFragmentOutputRepresentation
|
|
632
|
-
body:
|
|
633
|
-
application/json:
|
|
634
|
-
type: SlackBridgeUpdateMessageInputRepresentation
|
|
635
|
-
(oas-body-name): slackMessageUpdateRequest
|
|
636
|
-
uriParameters:
|
|
637
|
-
channelId:
|
|
638
|
-
description: Id of the Slack channel where the message exists
|
|
639
|
-
type: string
|
|
640
|
-
required: true
|
|
641
|
-
messageTs:
|
|
642
|
-
description: The timestamp of the Slack message
|
|
643
|
-
type: string
|
|
644
|
-
required: true
|
|
645
|
-
teamId:
|
|
646
|
-
description: Id of the Slack team where the conversation exists
|
|
647
|
-
type: string
|
|
648
|
-
required: true
|
|
649
|
-
/channel/{channelId}/messages/{messageTs}/reactions:
|
|
650
|
-
delete:
|
|
651
|
-
displayName: deleteSlackMessageReactions
|
|
652
|
-
description: Request to delete a reaction on Slack message
|
|
653
|
-
responses:
|
|
654
|
-
'200':
|
|
655
|
-
description: Success
|
|
656
|
-
queryParameters:
|
|
657
|
-
name:
|
|
658
|
-
description: The name of the reaction to delete
|
|
745
|
+
/channel/{channelId}:
|
|
746
|
+
/mark:
|
|
747
|
+
post:
|
|
748
|
+
displayName: postSlackConversationMark
|
|
749
|
+
description: Request to set the read marker on a slack conversation
|
|
750
|
+
responses:
|
|
751
|
+
'200':
|
|
752
|
+
description: Success
|
|
753
|
+
body:
|
|
754
|
+
application/json:
|
|
755
|
+
type: SlackBridgeConversationMarkOutputRepresentation
|
|
756
|
+
queryParameters:
|
|
757
|
+
messageTs:
|
|
758
|
+
description: The timestamp of the message being marked read.
|
|
759
|
+
type: string
|
|
760
|
+
#override connect api generated value
|
|
761
|
+
required: true
|
|
762
|
+
uriParameters:
|
|
763
|
+
channelId:
|
|
764
|
+
description: Id of the Slack channel where the message exists
|
|
659
765
|
type: string
|
|
660
|
-
required:
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
description: Request to get a reaction on a Slack message
|
|
664
|
-
responses:
|
|
665
|
-
'200':
|
|
666
|
-
description: Success
|
|
667
|
-
body:
|
|
668
|
-
application/json:
|
|
669
|
-
type: SlackBridgeReactionsOutputRepresentation
|
|
670
|
-
post:
|
|
671
|
-
displayName: postSlackMessageReactions
|
|
672
|
-
description: Request to post a reaction on Slack message
|
|
673
|
-
responses:
|
|
674
|
-
'200':
|
|
675
|
-
description: Success
|
|
676
|
-
body:
|
|
677
|
-
application/json:
|
|
678
|
-
type: SlackBridgeReactionsOutputRepresentation
|
|
679
|
-
queryParameters:
|
|
680
|
-
name:
|
|
681
|
-
description: The name of the reaction to add
|
|
766
|
+
required: true
|
|
767
|
+
teamId:
|
|
768
|
+
description: Id of the Slack team where the conversation exists
|
|
682
769
|
type: string
|
|
683
|
-
required:
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
770
|
+
required: true
|
|
771
|
+
/members:
|
|
772
|
+
get:
|
|
773
|
+
displayName: getSlackConversationMembers
|
|
774
|
+
description: Request to get the members of a Slack conversation
|
|
775
|
+
responses:
|
|
776
|
+
'200':
|
|
777
|
+
description: Success
|
|
778
|
+
body:
|
|
779
|
+
application/json:
|
|
780
|
+
type: SlackBridgeConversationMembersOutputRepresentation
|
|
781
|
+
post:
|
|
782
|
+
displayName: postSlackConversationMembers
|
|
783
|
+
description: Request to join the current Slack user or invite other Slack
|
|
784
|
+
users to a Slack conversation
|
|
785
|
+
responses:
|
|
786
|
+
'200':
|
|
787
|
+
description: Success
|
|
788
|
+
body:
|
|
789
|
+
application/json:
|
|
790
|
+
type: SlackBridgeConversationMembersOutputRepresentation
|
|
791
|
+
body:
|
|
792
|
+
application/json:
|
|
793
|
+
type: SlackBridgeConversationMembersInputRepresentation
|
|
794
|
+
(oas-body-name): slackConversationMembersPostRequest
|
|
795
|
+
uriParameters:
|
|
796
|
+
channelId:
|
|
797
|
+
description: Id of the Slack channel where the message exists
|
|
798
|
+
type: string
|
|
799
|
+
required: true
|
|
800
|
+
teamId:
|
|
801
|
+
description: Id of the Slack team where the conversation exists
|
|
802
|
+
type: string
|
|
803
|
+
required: true
|
|
804
|
+
/members/{slackUserId}:
|
|
805
|
+
delete:
|
|
806
|
+
displayName: deleteSlackConversationMember
|
|
807
|
+
description: Request to leave a Slack conversation or kick a member from
|
|
808
|
+
a Slack conversation
|
|
809
|
+
responses:
|
|
810
|
+
'200':
|
|
811
|
+
description: Success
|
|
812
|
+
get:
|
|
813
|
+
displayName: getSlackConversationMember
|
|
814
|
+
description: Request to get a member of a Slack conversation
|
|
815
|
+
responses:
|
|
816
|
+
'200':
|
|
817
|
+
description: Success
|
|
818
|
+
body:
|
|
819
|
+
application/json:
|
|
820
|
+
type: SlackBridgeConversationMemberOutputRepresentation
|
|
821
|
+
uriParameters:
|
|
822
|
+
channelId:
|
|
823
|
+
description: Id of the Slack channel where the message exists
|
|
824
|
+
type: string
|
|
825
|
+
required: true
|
|
826
|
+
slackUserId:
|
|
827
|
+
description: Id of the Slack member to leave or kick from the conversation
|
|
828
|
+
type: string
|
|
829
|
+
required: true
|
|
830
|
+
teamId:
|
|
831
|
+
description: Id of the Slack team where the conversation exists
|
|
832
|
+
type: string
|
|
833
|
+
required: true
|
|
834
|
+
/messages/{messageTs}:
|
|
835
|
+
delete:
|
|
836
|
+
displayName: deleteSlackMessage
|
|
837
|
+
description: Request to delete a Slack post
|
|
838
|
+
responses:
|
|
839
|
+
'200':
|
|
840
|
+
description: Success
|
|
841
|
+
get:
|
|
842
|
+
displayName: getSlackMessage
|
|
843
|
+
description: Get Slack message from the given Channel
|
|
844
|
+
responses:
|
|
845
|
+
'200':
|
|
846
|
+
description: Success
|
|
847
|
+
body:
|
|
848
|
+
application/json:
|
|
849
|
+
type: SlackBridgeMessageFragmentOutputRepresentation
|
|
850
|
+
patch:
|
|
851
|
+
displayName: patchSlackMessage
|
|
852
|
+
description: Request to update a Slack post
|
|
853
|
+
responses:
|
|
854
|
+
'200':
|
|
855
|
+
description: Success
|
|
856
|
+
body:
|
|
857
|
+
application/json:
|
|
858
|
+
type: SlackBridgeMessageFragmentOutputRepresentation
|
|
859
|
+
body:
|
|
860
|
+
application/json:
|
|
861
|
+
type: SlackBridgeUpdateMessageInputRepresentation
|
|
862
|
+
(oas-body-name): slackMessageUpdateRequest
|
|
863
|
+
uriParameters:
|
|
864
|
+
channelId:
|
|
865
|
+
description: Id of the Slack channel where the message exists
|
|
866
|
+
type: string
|
|
867
|
+
required: true
|
|
868
|
+
messageTs:
|
|
869
|
+
description: The timestamp of the Slack message
|
|
870
|
+
type: string
|
|
871
|
+
required: true
|
|
872
|
+
teamId:
|
|
873
|
+
description: Id of the Slack team where the conversation exists
|
|
874
|
+
type: string
|
|
875
|
+
required: true
|
|
876
|
+
/messages/{messageTs}/reactions:
|
|
877
|
+
delete:
|
|
878
|
+
displayName: deleteSlackMessageReactions
|
|
879
|
+
description: Request to delete a reaction on Slack message
|
|
880
|
+
responses:
|
|
881
|
+
'200':
|
|
882
|
+
description: Success
|
|
883
|
+
queryParameters:
|
|
884
|
+
name:
|
|
885
|
+
description: The name of the reaction to delete
|
|
886
|
+
type: string
|
|
887
|
+
required: false
|
|
888
|
+
get:
|
|
889
|
+
displayName: getSlackMessageReactions
|
|
890
|
+
description: Request to get a reaction on a Slack message
|
|
891
|
+
responses:
|
|
892
|
+
'200':
|
|
893
|
+
description: Success
|
|
894
|
+
body:
|
|
895
|
+
application/json:
|
|
896
|
+
type: SlackBridgeReactionsOutputRepresentation
|
|
897
|
+
post:
|
|
898
|
+
displayName: postSlackMessageReactions
|
|
899
|
+
description: Request to post a reaction on Slack message
|
|
900
|
+
responses:
|
|
901
|
+
'200':
|
|
902
|
+
description: Success
|
|
903
|
+
body:
|
|
904
|
+
application/json:
|
|
905
|
+
type: SlackBridgeReactionsOutputRepresentation
|
|
906
|
+
queryParameters:
|
|
907
|
+
name:
|
|
908
|
+
description: The name of the reaction to add
|
|
909
|
+
type: string
|
|
910
|
+
required: false
|
|
911
|
+
uriParameters:
|
|
912
|
+
channelId:
|
|
913
|
+
description: Id of the Slack channel where the message exists
|
|
914
|
+
type: string
|
|
915
|
+
required: true
|
|
916
|
+
messageTs:
|
|
917
|
+
description: The timestamp of the Slack message
|
|
918
|
+
type: string
|
|
919
|
+
required: true
|
|
920
|
+
teamId:
|
|
921
|
+
description: Id of the Slack team where the conversation exists
|
|
922
|
+
type: string
|
|
923
|
+
required: true
|
|
697
924
|
/emojis:
|
|
698
925
|
get:
|
|
699
926
|
displayName: getSlackCustomEmoji
|
|
@@ -710,6 +937,26 @@ types:
|
|
|
710
937
|
type: string
|
|
711
938
|
required: true
|
|
712
939
|
/search:
|
|
940
|
+
/conversations:
|
|
941
|
+
get:
|
|
942
|
+
displayName: getSlackSearchConversation
|
|
943
|
+
description: Search Slack Conversations
|
|
944
|
+
responses:
|
|
945
|
+
'200':
|
|
946
|
+
description: Success
|
|
947
|
+
body:
|
|
948
|
+
application/json:
|
|
949
|
+
type: SlackBridgeConversationInfosOutputRepresentation
|
|
950
|
+
queryParameters:
|
|
951
|
+
search:
|
|
952
|
+
description: Search String
|
|
953
|
+
type: string
|
|
954
|
+
required: false
|
|
955
|
+
uriParameters:
|
|
956
|
+
teamId:
|
|
957
|
+
description: Team or Workspace
|
|
958
|
+
type: string
|
|
959
|
+
required: true
|
|
713
960
|
/emojis:
|
|
714
961
|
get:
|
|
715
962
|
displayName: getSlackSearchEmoji
|
|
@@ -741,6 +988,21 @@ types:
|
|
|
741
988
|
application/json:
|
|
742
989
|
type: SlackBridgeUserInfosOutputRepresentation
|
|
743
990
|
queryParameters:
|
|
991
|
+
channels:
|
|
992
|
+
type: array
|
|
993
|
+
required: false
|
|
994
|
+
items:
|
|
995
|
+
type: string
|
|
996
|
+
(oas-collectionFormat): csv
|
|
997
|
+
filter:
|
|
998
|
+
type: string
|
|
999
|
+
required: false
|
|
1000
|
+
not_in_channels:
|
|
1001
|
+
type: array
|
|
1002
|
+
required: false
|
|
1003
|
+
items:
|
|
1004
|
+
type: string
|
|
1005
|
+
(oas-collectionFormat): csv
|
|
744
1006
|
search:
|
|
745
1007
|
description: Search String
|
|
746
1008
|
type: string
|