Skip to content

Commit 748e77e

Browse files
author
Slack API Ref Buildbot
committed
Updated from Slack docs, 2026/02/11
1 parent 171609f commit 748e77e

File tree

7 files changed

+44
-1
lines changed

7 files changed

+44
-1
lines changed

docs.slack.dev/methods/admin.conversations.unlinkObjects.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"http_method": "POST",
44
"scope": {
55
"user": [
6-
"admin.conversations:write"
6+
"admin.conversations:manage_objects"
77
]
88
},
99
"json_input_supported": true,

docs.slack.dev/methods/chat.appendStream.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
"type": "string",
3333
"subtype": "channel"
3434
},
35+
"chunks": {
36+
"desc": "An array of streaming chunks. Chunks can be markdown text chunks, task update chunks, and plan update chunks.",
37+
"type": "array"
38+
},
3539
"ts": {
3640
"desc": "The timestamp of the streaming message.",
3741
"schema": "ts"

docs.slack.dev/methods/chat.startStream.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
"type": "string",
3232
"subtype": "channel"
3333
},
34+
"chunks": {
35+
"desc": "An array of streaming chunks. Chunks can be markdown text chunks, task update chunks, and plan update chunks.",
36+
"type": "array"
37+
},
3438
"markdown_text": {
3539
"desc": "Accepts message text formatted in markdown. Limit this field to 12,000 characters.",
3640
"type": "string",
@@ -50,6 +54,16 @@
5054
"desc": "The encoded ID of the team the user receiving the streaming text belongs to. Required when streaming to channels.",
5155
"type": "string",
5256
"example": "T0123456789"
57+
},
58+
"task_display_mode": {
59+
"desc": "Specifies how tasks are displayed in the message. A `timeline` displays individual tasks with text in sequential order, and `plan` displays all tasks together, with the first tasks's placement determining the placement of the rest of the tasks.",
60+
"type": "string",
61+
"enum": [
62+
"timeline",
63+
"plan"
64+
],
65+
"default": "timeline",
66+
"example": "plan"
5367
}
5468
}
5569
},

docs.slack.dev/methods/chat.stopStream.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
"type": "string",
3232
"subtype": "channel"
3333
},
34+
"chunks": {
35+
"desc": "An array of streaming chunks. Chunks can be markdown text chunks, task update chunks, and plan update chunks.",
36+
"type": "array"
37+
},
3438
"ts": {
3539
"desc": "The timestamp of the streaming message.",
3640
"schema": "ts"

methods/chat/chat.appendStream.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"desc": "An encoded ID that represents a channel, private group, or DM.",
1010
"type": "channel"
1111
},
12+
"chunks": {
13+
"required": false,
14+
"desc": "An array of streaming chunks. Chunks can be markdown text chunks, task update chunks, and plan update chunks.",
15+
"type": "array"
16+
},
1217
"ts": {
1318
"required": true,
1419
"desc": "The timestamp of the streaming message.",

methods/chat/chat.startStream.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"desc": "An encoded ID that represents a channel thread or DM.",
1010
"type": "channel"
1111
},
12+
"chunks": {
13+
"required": false,
14+
"desc": "An array of streaming chunks. Chunks can be markdown text chunks, task update chunks, and plan update chunks.",
15+
"type": "array"
16+
},
1217
"markdown_text": {
1318
"required": false,
1419
"example": "**This is bold text**",
@@ -30,6 +35,12 @@
3035
"example": "T0123456789",
3136
"desc": "The encoded ID of the team the user receiving the streaming text belongs to. Required when streaming to channels.",
3237
"type": "string"
38+
},
39+
"task_display_mode": {
40+
"required": false,
41+
"example": "plan",
42+
"desc": "Specifies how tasks are displayed in the message. A timeline displays individual tasks with text in sequential order, and plan displays all tasks together, with the first tasks's placement determining the placement of the rest of the tasks.",
43+
"type": "enum"
3344
}
3445
},
3546
"response": {

methods/chat/chat.stopStream.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"desc": "An encoded ID that represents a channel, private group, or DM.",
1010
"type": "channel"
1111
},
12+
"chunks": {
13+
"required": false,
14+
"desc": "An array of streaming chunks. Chunks can be markdown text chunks, task update chunks, and plan update chunks.",
15+
"type": "array"
16+
},
1217
"ts": {
1318
"required": true,
1419
"desc": "The timestamp of the streaming message.",

0 commit comments

Comments
 (0)