@salesforce/lds-adapters-platform-slack-bridge 1.354.0-dev11 → 1.354.0-dev13

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
@@ -616,6 +642,9 @@ types:
616
642
  replyUsersCount:
617
643
  description: Number of users who replied to this message
618
644
  type: integer | nil
645
+ slackInviterId:
646
+ description: Details of the Slack User who invited the user described by slackUserId
647
+ type: string | nil
619
648
  slackUserId:
620
649
  description: Details of the Slack User who posted this message
621
650
  type: string
@@ -1323,6 +1352,30 @@ types:
1323
1352
  description: Team or Workspace
1324
1353
  type: string
1325
1354
  required: true
1355
+ /mpims:
1356
+ get:
1357
+ displayName: getSlackSearchMPIMs
1358
+ description: Search Slack MPIMs
1359
+ responses:
1360
+ '200':
1361
+ description: Success
1362
+ body:
1363
+ application/json:
1364
+ type: SlackBridgeMPIMSearchResultsOutputRepresentation
1365
+ queryParameters:
1366
+ search:
1367
+ description: Search String
1368
+ type: string
1369
+ required: false
1370
+ useDisplayName:
1371
+ description: Match by user display names
1372
+ type: boolean
1373
+ required: false
1374
+ uriParameters:
1375
+ teamId:
1376
+ description: Team ID
1377
+ type: string
1378
+ required: true
1326
1379
  /users:
1327
1380
  get:
1328
1381
  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):