@salesforce/lds-adapters-platform-slack-bridge 1.365.0 → 1.367.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/dist/es/es2018/platform-slack-bridge.js +1539 -1151
- package/dist/es/es2018/types/src/generated/adapters/getSlackSearchMPIMs.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamSearchMpimsByTeamId.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationOutputRepresentation.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeFileOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMPIMSearchResultOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMPIMSearchResultsOutputRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMessageOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfoOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +1495 -1091
- package/src/raml/api.raml +58 -1
- package/src/raml/luvio.raml +10 -0
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
|
|
@@ -835,6 +864,10 @@ types:
|
|
|
835
864
|
isWorkflowBot:
|
|
836
865
|
description: Is Slack User a workflow bot?
|
|
837
866
|
type: boolean
|
|
867
|
+
isAgentforceBot:
|
|
868
|
+
description: Is Slack User an Agentforce bot?
|
|
869
|
+
type: boolean
|
|
870
|
+
required: false
|
|
838
871
|
name:
|
|
839
872
|
description: Name of the Slack User
|
|
840
873
|
type: string
|
|
@@ -1323,6 +1356,30 @@ types:
|
|
|
1323
1356
|
description: Team or Workspace
|
|
1324
1357
|
type: string
|
|
1325
1358
|
required: true
|
|
1359
|
+
/mpims:
|
|
1360
|
+
get:
|
|
1361
|
+
displayName: getSlackSearchMPIMs
|
|
1362
|
+
description: Search Slack MPIMs
|
|
1363
|
+
responses:
|
|
1364
|
+
'200':
|
|
1365
|
+
description: Success
|
|
1366
|
+
body:
|
|
1367
|
+
application/json:
|
|
1368
|
+
type: SlackBridgeMPIMSearchResultsOutputRepresentation
|
|
1369
|
+
queryParameters:
|
|
1370
|
+
search:
|
|
1371
|
+
description: Search String
|
|
1372
|
+
type: string
|
|
1373
|
+
required: false
|
|
1374
|
+
useDisplayName:
|
|
1375
|
+
description: Match by user display names
|
|
1376
|
+
type: boolean
|
|
1377
|
+
required: false
|
|
1378
|
+
uriParameters:
|
|
1379
|
+
teamId:
|
|
1380
|
+
description: Team ID
|
|
1381
|
+
type: string
|
|
1382
|
+
required: true
|
|
1326
1383
|
/users:
|
|
1327
1384
|
get:
|
|
1328
1385
|
displayName: getSlackSearchUser
|
package/src/raml/luvio.raml
CHANGED
|
@@ -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):
|