@salesforce/lds-adapters-platform-slack-bridge 1.353.1 → 1.354.0-dev1

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
@@ -238,6 +238,16 @@ types:
238
238
  description: The websocket URL to subscribe to RTM topics associated with
239
239
  the conversation
240
240
  type: string | nil
241
+ SlackBridgeDisplayLoginOutputRepresentation:
242
+ description: Contains Salesforce Org info and Slack Team info
243
+ type: object
244
+ properties:
245
+ orgId:
246
+ description: Salesforce Org Id
247
+ type: string
248
+ slackTeam:
249
+ description: Slack Team Info
250
+ type: SlackBridgeSlackTeamOutputRepresentation
241
251
  SlackBridgeEmojiOutputRepresentation:
242
252
  description: Contains the details of a Slack Emoji
243
253
  type: object
@@ -582,6 +592,23 @@ types:
582
592
  description: The id of the Slack team (Workspace or Enterprise Org) where
583
593
  the related threads exist
584
594
  type: string
595
+ SlackBridgeSlackTeamOutputRepresentation:
596
+ description: Contains metadata about the connected slack team
597
+ type: object
598
+ properties:
599
+ status:
600
+ description: The team connection status
601
+ type: string
602
+ teamDomain:
603
+ description: The full domain name for the connected slack team or enterprise
604
+ grid
605
+ type: string
606
+ teamId:
607
+ description: The team id
608
+ type: string
609
+ teamName:
610
+ description: The team name
611
+ type: string
585
612
  SlackBridgeUpdateMessageInputRepresentation:
586
613
  description: Contains the parameters to update a message to Slack
587
614
  type: object
@@ -788,6 +815,16 @@ types:
788
815
  description: Entity ID to get related threads
789
816
  type: string
790
817
  required: true
818
+ /slack_display_login:
819
+ get:
820
+ displayName: getSlackDisplayLogin
821
+ description: Request to get Slack Login info
822
+ responses:
823
+ '200':
824
+ description: Success
825
+ body:
826
+ application/json:
827
+ type: SlackBridgeDisplayLoginOutputRepresentation
791
828
  /team/{teamId}:
792
829
  /channel/{channelId}:
793
830
  /mark:
@@ -51,6 +51,10 @@ types:
51
51
  (luvio.ttl): 2592000000
52
52
  (luvio.key):
53
53
  name: name
54
+ SlackBridgeDisplayLoginOutputRepresentation:
55
+ (luvio.ttl): 500
56
+ SlackBridgeSlackTeamOutputRepresentation:
57
+ (luvio.ttl): 500
54
58
 
55
59
  /connect/slackbridge:
56
60
  /conversation/messages:
@@ -162,3 +166,7 @@ types:
162
166
  get:
163
167
  (luvio.adapter):
164
168
  name: getRelatedThreads
169
+ /slack_display_login:
170
+ get:
171
+ (luvio.adapter):
172
+ name: getSlackDisplayLogin