You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sources
- New Chat Message (Instant)
- New User Created (Instant)
- New Comment Added (Instant)
Actions
- Send Message Group Chat
- Create Post
- Get Profile
description: "Array of files to be attached to the post",
26
+
description: "List of file objects to be attached. E.g. [{\"name\": \"fair_play_rules.pdf\", \"url\": \"https://mytenant.beekeeper.io/file/665987/original/fair_play_rules.pdf\", \"userid\": \"5cb9v45d-8i78-4v65-b5fd-81cgfac3ef17\", \"height\": 619, \"width\": 700, \"key\": \"f4fdaab0-d198-49b4-b1cc-dd85572d72f1\", \"media_type\": \"image/png\", \"usage_type\": \"attachment_image\" }]. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/18408b41927b9-creates-a-new-post) for further details.",
22
27
optional: true,
23
28
},
24
29
locked: {
@@ -34,71 +39,63 @@ export default {
34
39
optional: true,
35
40
},
36
41
media: {
37
-
type: "string",
42
+
type: "string[]",
38
43
label: "Media",
39
-
description: "Media attachment for the post",
44
+
description: "List of Photo or Video objects. E.g. [{\"name\": \"fair_play_rules.pdf\", \"url\": \"https://mytenant.beekeeper.io/file/665987/original/fair_play_rules.pdf\", \"userid\": \"5cb9v45d-8i78-4v65-b5fd-81cgfac3ef17\", \"height\": 619, \"width\": 700, \"key\": \"f4fdaab0-d198-49b4-b1cc-dd85572d72f1\", \"media_type\": \"image/png\", \"usage_type\": \"attachment_image\" }]. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/18408b41927b9-creates-a-new-post) for further details.",
40
45
optional: true,
41
46
},
42
47
labels: {
43
48
type: "string[]",
44
49
label: "Labels",
45
-
description: "Array of labels for the post",
50
+
description: "List of labels attached to the post",
46
51
optional: true,
47
52
},
48
53
sticky: {
49
54
type: "boolean",
50
55
label: "Sticky",
51
-
description: "Make the post sticky",
52
-
optional: true,
53
-
},
54
-
photos: {
55
-
type: "string[]",
56
-
label: "Photos",
57
-
description: "Array of photos to be attached to the post",
56
+
description: "Flag that pins a post to the top of the stream",
58
57
optional: true,
59
58
},
60
59
reactionsDisabled: {
61
60
type: "boolean",
62
61
label: "Reactions Disabled",
63
-
description: "Disable reactions for the post",
64
-
optional: true,
65
-
},
66
-
text: {
67
-
type: "string",
68
-
label: "Text",
69
-
description: "The text content of the post",
62
+
description: "Flag that disables the ability to add reaction to the post and to see reactions that have been added",
70
63
optional: true,
71
64
},
72
65
options: {
73
66
type: "object",
74
67
label: "Options",
75
-
description: "Additional options for the post",
68
+
description: "List of poll options in a post. E.g. [\"This Friday\", \"Monday next week\"]",
76
69
optional: true,
77
70
},
78
71
scheduledAt: {
79
72
type: "string",
80
73
label: "Scheduled At",
81
-
description: "The scheduled time for the post in the format (UTC, yyyy-mm-ddTHH:MM:SS)",
74
+
description: "Date and time when the post is scheduled to be published (UTC timezone, yyyy-mm-ddTHH:MM:SS format)",
Copy file name to clipboardExpand all lines: components/beekeeper/actions/get-profile/get-profile.mjs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,10 @@
1
1
importbeekeeperfrom"../../beekeeper.app.mjs";
2
-
import{axios}from"@pipedream/platform";
3
2
4
3
exportdefault{
5
4
key: "beekeeper-get-profile",
6
5
name: "Get User Profile",
7
6
description: "Retrieve the profile details of a specific user. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/05bcd13b38a67-get-profile-of-the-given-user)",
8
-
version: "0.0.{{ts}}",
7
+
version: "0.0.1",
9
8
type: "action",
10
9
props: {
11
10
beekeeper,
@@ -18,23 +17,24 @@ export default {
18
17
includeActivities: {
19
18
type: "boolean",
20
19
label: "Include Activities",
21
-
description: "Whether to include the user's activities. True by default.",
22
-
optional: true,
20
+
description: "Whether to include the user's activities.",
23
21
default: true,
24
22
},
25
23
includeTotals: {
26
24
type: "boolean",
27
25
label: "Include Totals",
28
-
description: "Whether to include the user's total number of posts, comments, and likes received. True by default.",
29
-
optional: true,
26
+
description: "Whether to include the user's total number of posts, comments, and likes received.",
description: "Send a precomposed message to a defined group chat. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/9075b32d36db4-send-a-message-to-a-group-chat)",
8
-
version: "0.0.{{ts}}",
9
+
version: "0.0.1",
9
10
type: "action",
10
11
props: {
11
12
beekeeper,
@@ -45,35 +46,38 @@ export default {
45
46
description: "Array of objects containing type and data fields for message addons.",
46
47
optional: true,
47
48
},
48
-
refersTo: {
49
-
type: "string",
50
-
label: "Refers To",
51
-
description: "Field used by message deletion event. Marks the ID of the message the deletion message refers to.",
52
-
optional: true,
53
-
},
54
49
mentions: {
55
-
type: "string[]",
56
-
label: "Mentions",
57
-
description: "IDs of the users mentioned in the message body. Can also have value of 'all', which means all the chat members were mentioned.",
0 commit comments