@salesforce/lds-adapters-platform-slack-bridge 1.380.0-dev14 → 1.380.0-dev16
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 +426 -91
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationInfoOutputRepresentation.d.ts +9 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMessageOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SlackBridgeRoomOutputRepresentation.d.ts +46 -0
- package/package.json +3 -3
- package/sfdc/index.js +413 -78
- package/src/raml/api.raml +42 -1
package/src/raml/api.raml
CHANGED
|
@@ -126,6 +126,10 @@ types:
|
|
|
126
126
|
isMember:
|
|
127
127
|
description: Is the context User a member of this Conversation?
|
|
128
128
|
type: boolean | nil
|
|
129
|
+
isMpim:
|
|
130
|
+
description: Is this MPDM?
|
|
131
|
+
required: false
|
|
132
|
+
type: boolean | nil
|
|
129
133
|
isOpen:
|
|
130
134
|
description: Is this conversation open?
|
|
131
135
|
type: boolean | nil
|
|
@@ -157,7 +161,7 @@ types:
|
|
|
157
161
|
type: string | nil
|
|
158
162
|
name:
|
|
159
163
|
description: Name of the Conversation
|
|
160
|
-
type: string
|
|
164
|
+
type: string | nil
|
|
161
165
|
numOfMembers:
|
|
162
166
|
description: Number of members in the Conversation
|
|
163
167
|
type: integer | nil
|
|
@@ -181,6 +185,10 @@ types:
|
|
|
181
185
|
description: The URL to the channel
|
|
182
186
|
required: false
|
|
183
187
|
type: string
|
|
188
|
+
user:
|
|
189
|
+
description: Id of user participating in a DM
|
|
190
|
+
required: false
|
|
191
|
+
type: string | nil
|
|
184
192
|
SlackBridgeConversationInfosOutputRepresentation:
|
|
185
193
|
description: Contains the list of Slack Conversation Information
|
|
186
194
|
type: object
|
|
@@ -603,6 +611,35 @@ types:
|
|
|
603
611
|
description: The id of the Slack team (Workspace or Enterprise Org) where
|
|
604
612
|
this conversation exists
|
|
605
613
|
type: string
|
|
614
|
+
SlackBridgeRoomOutputRepresentation:
|
|
615
|
+
description: Contains the details of Slack room (huddle)
|
|
616
|
+
type: object
|
|
617
|
+
properties:
|
|
618
|
+
id:
|
|
619
|
+
description: Id of the room (huddle)
|
|
620
|
+
type: string
|
|
621
|
+
dateStart:
|
|
622
|
+
description: Starting date of the huddle
|
|
623
|
+
type: integer
|
|
624
|
+
dateEnd:
|
|
625
|
+
description: Ending date of the huddle
|
|
626
|
+
type: integer | nil
|
|
627
|
+
hasEnded:
|
|
628
|
+
type: boolean
|
|
629
|
+
description: Whether the huddle has ended
|
|
630
|
+
participants:
|
|
631
|
+
type: array
|
|
632
|
+
items:
|
|
633
|
+
type: string
|
|
634
|
+
description: List of current participants
|
|
635
|
+
participantHistory:
|
|
636
|
+
type: array
|
|
637
|
+
items:
|
|
638
|
+
type: string
|
|
639
|
+
description: List of all participants who have joined
|
|
640
|
+
huddleLink:
|
|
641
|
+
type: string
|
|
642
|
+
description: Link to join the huddle in Slack
|
|
606
643
|
SlackBridgeMessageOutputRepresentation:
|
|
607
644
|
description: Contains the details of Slack Message
|
|
608
645
|
type: object
|
|
@@ -665,6 +702,10 @@ types:
|
|
|
665
702
|
type: array
|
|
666
703
|
items:
|
|
667
704
|
type: SlackBridgeReactionOutputRepresentation
|
|
705
|
+
room:
|
|
706
|
+
description:
|
|
707
|
+
type: SlackBridgeRoomOutputRepresentation | nil
|
|
708
|
+
required: false
|
|
668
709
|
replyCount:
|
|
669
710
|
description: Number of replies for this message
|
|
670
711
|
type: integer | nil
|