@salesforce/lds-adapters-platform-slack-bridge 1.380.0-dev13 → 1.380.0-dev15
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 +257 -84
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMessageOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SlackBridgeRoomOutputRepresentation.d.ts +40 -0
- package/package.json +3 -3
- package/sfdc/index.js +244 -71
- package/src/raml/api.raml +27 -0
package/src/raml/api.raml
CHANGED
|
@@ -603,6 +603,29 @@ types:
|
|
|
603
603
|
description: The id of the Slack team (Workspace or Enterprise Org) where
|
|
604
604
|
this conversation exists
|
|
605
605
|
type: string
|
|
606
|
+
SlackBridgeRoomOutputRepresentation:
|
|
607
|
+
description: Contains the details of Slack room (huddle)
|
|
608
|
+
type: object
|
|
609
|
+
properties:
|
|
610
|
+
id:
|
|
611
|
+
description: Id of the room (huddle)
|
|
612
|
+
type: string
|
|
613
|
+
hasEnded:
|
|
614
|
+
type: boolean
|
|
615
|
+
description: Whether the huddle has ended
|
|
616
|
+
participants:
|
|
617
|
+
type: array
|
|
618
|
+
items:
|
|
619
|
+
type: string
|
|
620
|
+
description: List of current participants
|
|
621
|
+
participantHistory:
|
|
622
|
+
type: array
|
|
623
|
+
items:
|
|
624
|
+
type: string
|
|
625
|
+
description: List of all participants who have joined
|
|
626
|
+
huddleLink:
|
|
627
|
+
type: string
|
|
628
|
+
description: Link to join the huddle in Slack
|
|
606
629
|
SlackBridgeMessageOutputRepresentation:
|
|
607
630
|
description: Contains the details of Slack Message
|
|
608
631
|
type: object
|
|
@@ -665,6 +688,10 @@ types:
|
|
|
665
688
|
type: array
|
|
666
689
|
items:
|
|
667
690
|
type: SlackBridgeReactionOutputRepresentation
|
|
691
|
+
room:
|
|
692
|
+
description:
|
|
693
|
+
type: SlackBridgeRoomOutputRepresentation | nil
|
|
694
|
+
required: false
|
|
668
695
|
replyCount:
|
|
669
696
|
description: Number of replies for this message
|
|
670
697
|
type: integer | nil
|