@salesforce/lds-adapters-platform-slack-bridge 1.332.0-dev24 → 1.332.0-dev26

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/src/raml/api.raml CHANGED
@@ -217,6 +217,16 @@ types:
217
217
  conversationInfo:
218
218
  description: The full information describing this conversation
219
219
  type: SlackBridgeConversationInfoOutputRepresentation | nil
220
+ conversationInfos:
221
+ description: A collection of related conversations
222
+ type: array
223
+ items:
224
+ type: SlackBridgeConversationInfoOutputRepresentation
225
+ emojis:
226
+ description: A collection of emojis used in this conversation
227
+ type: array
228
+ items:
229
+ type: SlackBridgeEmojiOutputRepresentation
220
230
  history:
221
231
  description: A segment of this conversation's message history, either part
222
232
  of the top-level conversation or a single message's thread of replies
@@ -649,7 +659,7 @@ types:
649
659
  type: string | nil
650
660
  teamId:
651
661
  description: Slack Workspace Id
652
- type: string
662
+ type: string | nil
653
663
  title:
654
664
  description: Title of the Slack User
655
665
  type: string | nil
@@ -669,6 +679,9 @@ types:
669
679
  description: Contains the list of Slack User Information
670
680
  type: object
671
681
  properties:
682
+ nextMarker:
683
+ description: Next marker used for pagination. (Optional)
684
+ type: string | nil
672
685
  searchString:
673
686
  description: String used to search this list of conversations (Optional)
674
687
  type: string | nil
@@ -980,6 +993,48 @@ types:
980
993
  description: Id of the Slack team where the conversation exists
981
994
  type: string
982
995
  required: true
996
+ /channels:
997
+ get:
998
+ displayName: getSlackConversationInfos
999
+ description: Request to get a collection of a Slack conversation infos
1000
+ responses:
1001
+ '200':
1002
+ description: Success
1003
+ body:
1004
+ application/json:
1005
+ type: SlackBridgeConversationInfosOutputRepresentation
1006
+ queryParameters:
1007
+ channelIds:
1008
+ description: List of Channel Ids
1009
+ type: array
1010
+ required: true
1011
+ items:
1012
+ type: string
1013
+ (oas-collectionFormat): csv
1014
+ uriParameters:
1015
+ teamId:
1016
+ description: Id of the Slack team where the conversations exists
1017
+ type: string
1018
+ required: true
1019
+ /channels/{channelId}:
1020
+ get:
1021
+ displayName: getSlackConversationInfo
1022
+ description: Request to get a collection of a Slack conversation infos
1023
+ responses:
1024
+ '200':
1025
+ description: Success
1026
+ body:
1027
+ application/json:
1028
+ type: SlackBridgeConversationInfoOutputRepresentation
1029
+ uriParameters:
1030
+ channelId:
1031
+ description: Id of the Slack channel
1032
+ type: string
1033
+ required: true
1034
+ teamId:
1035
+ description: Id of the Slack team where the conversations exists
1036
+ type: string
1037
+ required: true
983
1038
  /emojis:
984
1039
  get:
985
1040
  displayName: getSlackEmojis
@@ -12,9 +12,8 @@ types:
12
12
  (luvio.key):
13
13
  uniqueKey: uniqueKey
14
14
  SlackBridgeUserInfoOutputRepresentation:
15
- (luvio.ttl): 600000
15
+ (luvio.ttl): 900000
16
16
  (luvio.key):
17
- teamId: teamId
18
17
  slackUserId: slackUserId
19
18
  SlackBridgePostMessageOutputRepresentation:
20
19
  (luvio.key):
@@ -36,6 +35,7 @@ types:
36
35
  (luvio.key):
37
36
  channelId: channelId
38
37
  SlackBridgeConversationInfoOutputRepresentation:
38
+ (luvio.ttl): 900000
39
39
  (luvio.key):
40
40
  id: id
41
41
  SlackBridgeRecordChannelInfoOutputRepresentation:
@@ -128,6 +128,16 @@ types:
128
128
  post:
129
129
  (luvio.adapter):
130
130
  name: postSlackMessageReactions
131
+ /channels:
132
+ get:
133
+ (luvio.adapter):
134
+ name: getSlackConversationInfos
135
+ /channels/{channelId}:
136
+ get:
137
+ (luvio.adapter):
138
+ name: getSlackConversationInfo
139
+ (luvio.key):
140
+ id: urlParams.channelId
131
141
  /emojis:
132
142
  get:
133
143
  (luvio.adapter):
@@ -157,7 +167,6 @@ types:
157
167
  name: getSlackUser
158
168
  (luvio.key):
159
169
  slackUserId: urlParams.slackUserId
160
- teamId: urlParams.teamId
161
170
  /related_threads/entity/{entityId}:
162
171
  get:
163
172
  (luvio.adapter):