@salesforce/lds-adapters-platform-slack-bridge 1.365.0 → 1.366.0

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
@@ -435,7 +435,6 @@ types:
435
435
  type: string
436
436
  prettyType:
437
437
  description: Pretty type of the File
438
- required: false
439
438
  type: string | nil
440
439
  size:
441
440
  description: Size of the File
@@ -537,6 +536,33 @@ types:
537
536
  iconName:
538
537
  description: Icon Name of the File
539
538
  type: string
539
+ SlackBridgeMPIMSearchResultOutputRepresentation:
540
+ description: Contains the search result for a single MPIM
541
+ type: object
542
+ properties:
543
+ id:
544
+ description: Id of the Conversation
545
+ type: string
546
+ members:
547
+ description: List of Slack user ids that are members of this MPIM
548
+ type: array
549
+ items:
550
+ type: string
551
+ name:
552
+ description: Name of the Conversation
553
+ type: string
554
+ SlackBridgeMPIMSearchResultsOutputRepresentation:
555
+ description: Contains the search results for a collection of MPIMs
556
+ type: object
557
+ properties:
558
+ mpims:
559
+ description: List of Slack MPIM search results
560
+ type: array
561
+ items:
562
+ type: SlackBridgeMPIMSearchResultOutputRepresentation
563
+ searchString:
564
+ description: String used to search for this list of MPIMs (Optional)
565
+ type: string | nil
540
566
  SlackBridgeMessageFragmentOutputRepresentation:
541
567
  description: Dummy used for RAML generation and LDS consumption
542
568
  type: object
@@ -1323,6 +1349,30 @@ types:
1323
1349
  description: Team or Workspace
1324
1350
  type: string
1325
1351
  required: true
1352
+ /mpims:
1353
+ get:
1354
+ displayName: getSlackSearchMPIMs
1355
+ description: Search Slack MPIMs
1356
+ responses:
1357
+ '200':
1358
+ description: Success
1359
+ body:
1360
+ application/json:
1361
+ type: SlackBridgeMPIMSearchResultsOutputRepresentation
1362
+ queryParameters:
1363
+ search:
1364
+ description: Search String
1365
+ type: string
1366
+ required: false
1367
+ useDisplayName:
1368
+ description: Match by user display names
1369
+ type: boolean
1370
+ required: false
1371
+ uriParameters:
1372
+ teamId:
1373
+ description: Team ID
1374
+ type: string
1375
+ required: true
1326
1376
  /users:
1327
1377
  get:
1328
1378
  displayName: getSlackSearchUser
@@ -8,6 +8,8 @@ uses:
8
8
  (luvio.ttl): 60000
9
9
 
10
10
  types:
11
+ SlackBridgeConversationOutputRepresentation:
12
+ (luvio.ttl): 500
11
13
  SlackBridgeFileOutputRepresentation:
12
14
  (luvio.key):
13
15
  uniqueKey: uniqueKey
@@ -55,6 +57,10 @@ types:
55
57
  (luvio.ttl): 500
56
58
  SlackBridgeSlackTeamOutputRepresentation:
57
59
  (luvio.ttl): 500
60
+ SlackBridgeMPIMSearchResultsOutputRepresentation:
61
+ (luvio.ttl): 500
62
+ SlackBridgeMPIMSearchResultOutputRepresentation:
63
+ (luvio.ttl): 500
58
64
 
59
65
  /connect/slackbridge:
60
66
  /conversation/messages:
@@ -161,6 +167,10 @@ types:
161
167
  get:
162
168
  (luvio.adapter):
163
169
  name: getSlackSearchEmoji
170
+ /mpims:
171
+ get:
172
+ (luvio.adapter):
173
+ name: getSlackSearchMPIMs
164
174
  /users:
165
175
  get:
166
176
  (luvio.adapter):