@salesforce/lds-adapters-platform-slack-bridge 1.380.0-dev2 → 1.380.0-dev20
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 +564 -126
- 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/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfoOutputRepresentation.d.ts +10 -4
- package/package.json +3 -3
- package/sfdc/index.js +552 -114
- package/src/raml/api.raml +54 -4
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
|
|
@@ -889,6 +930,14 @@ types:
|
|
|
889
930
|
description: The enterprise user mapping
|
|
890
931
|
required: false
|
|
891
932
|
type: SlackBridgeEnterpriseUserInfoOutputRepresentation | nil
|
|
933
|
+
huddleState:
|
|
934
|
+
description: Huddle state of the Slack User, i.e., in_a_huddle, default_unset
|
|
935
|
+
required: false
|
|
936
|
+
type: string | nil
|
|
937
|
+
huddleStateExpirationTs:
|
|
938
|
+
description: Huddle state expiration timestamp
|
|
939
|
+
required: false
|
|
940
|
+
type: integer | nil
|
|
892
941
|
image24:
|
|
893
942
|
description: 24x24 version of the Slack User image
|
|
894
943
|
required: false
|
|
@@ -900,9 +949,6 @@ types:
|
|
|
900
949
|
description: Profile image used for this Slack user
|
|
901
950
|
required: false
|
|
902
951
|
type: string | nil
|
|
903
|
-
inHuddle:
|
|
904
|
-
description: Is this Slack User currently in a Huddle?
|
|
905
|
-
type: boolean | nil
|
|
906
952
|
isActive:
|
|
907
953
|
description: Is this Slack User currently active?
|
|
908
954
|
type: boolean | nil
|
|
@@ -966,6 +1012,10 @@ types:
|
|
|
966
1012
|
description: Time zone label of the Slack user, ie. Eastern Daylight Time
|
|
967
1013
|
required: false
|
|
968
1014
|
type: string | nil
|
|
1015
|
+
deleted:
|
|
1016
|
+
description: Is this Slack User deleted?
|
|
1017
|
+
required: false
|
|
1018
|
+
type: boolean | nil
|
|
969
1019
|
SlackBridgeUserInfosOutputRepresentation:
|
|
970
1020
|
description: Contains the list of Slack User Information
|
|
971
1021
|
type: object
|