Skip to content

Commit c7dd4aa

Browse files
srtaalejzimegmwbrookslukegalbraithrussellClaude
authored
feat: add thinking steps (#2484)
Co-authored-by: Eden Zimbelman <[email protected]> Co-authored-by: Michael Brooks <[email protected]> Co-authored-by: Luke Russell <[email protected]> Co-authored-by: Claude <[email protected]>
1 parent 941217f commit c7dd4aa

76 files changed

Lines changed: 1480 additions & 223 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/english/reference/types/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
- [ChannelUnarchiveMessageEvent](interfaces/ChannelUnarchiveMessageEvent.md)
4747
- [ChannelUnsharedEvent](interfaces/ChannelUnsharedEvent.md)
4848
- [Checkboxes](interfaces/Checkboxes.md)
49+
- [Chunk](interfaces/Chunk.md)
4950
- [~~Confirm~~](interfaces/Confirm.md)
5051
- [Confirmable](interfaces/Confirmable.md)
5152
- [Confirmation](interfaces/Confirmation.md)
@@ -124,6 +125,7 @@
124125
- [LinkSharedEvent](interfaces/LinkSharedEvent.md)
125126
- [LinkUnfurls](interfaces/LinkUnfurls.md)
126127
- [MarkdownBlock](interfaces/MarkdownBlock.md)
128+
- [MarkdownTextChunk](interfaces/MarkdownTextChunk.md)
127129
- [MaxItemsSelectable](interfaces/MaxItemsSelectable.md)
128130
- [MemberJoinedChannelEvent](interfaces/MemberJoinedChannelEvent.md)
129131
- [MemberLeftChannelEvent](interfaces/MemberLeftChannelEvent.md)
@@ -155,6 +157,8 @@
155157
- [PlainTextElement](interfaces/PlainTextElement.md)
156158
- [PlainTextInput](interfaces/PlainTextInput.md)
157159
- [PlainTextOption](interfaces/PlainTextOption.md)
160+
- [PlanBlock](interfaces/PlanBlock.md)
161+
- [PlanUpdateChunk](interfaces/PlanUpdateChunk.md)
158162
- [RadioButtons](interfaces/RadioButtons.md)
159163
- [RawTextElement](interfaces/RawTextElement.md)
160164
- [ReactionAddedEvent](interfaces/ReactionAddedEvent.md)
@@ -194,7 +198,9 @@
194198
- [SubteamSelfRemovedEvent](interfaces/SubteamSelfRemovedEvent.md)
195199
- [SubteamUpdatedEvent](interfaces/SubteamUpdatedEvent.md)
196200
- [TableBlock](interfaces/TableBlock.md)
201+
- [TaskCardBlock](interfaces/TaskCardBlock.md)
197202
- [TaskEntityFields](interfaces/TaskEntityFields.md)
203+
- [TaskUpdateChunk](interfaces/TaskUpdateChunk.md)
198204
- [TeamAccessGrantedEvent](interfaces/TeamAccessGrantedEvent.md)
199205
- [TeamAccessRevokedEvent](interfaces/TeamAccessRevokedEvent.md)
200206
- [TeamDomainChangeEvent](interfaces/TeamDomainChangeEvent.md)
@@ -206,6 +212,7 @@
206212
- [UrlImageObject](interfaces/UrlImageObject.md)
207213
- [URLInput](interfaces/URLInput.md)
208214
- [URLRespondable](interfaces/URLRespondable.md)
215+
- [URLSourceElement](interfaces/URLSourceElement.md)
209216
- [UserChangeEvent](interfaces/UserChangeEvent.md)
210217
- [UserHuddleChangedEvent](interfaces/UserHuddleChangedEvent.md)
211218
- [UserProfileChangedEvent](interfaces/UserProfileChangedEvent.md)
@@ -226,6 +233,7 @@
226233
- [AllMessageEvents](type-aliases/AllMessageEvents.md)
227234
- [AllMessageMetadataEvents](type-aliases/AllMessageMetadataEvents.md)
228235
- [AnyBlock](type-aliases/AnyBlock.md)
236+
- [AnyChunk](type-aliases/AnyChunk.md)
229237
- [CallUser](type-aliases/CallUser.md)
230238
- [ColorScheme](type-aliases/ColorScheme.md)
231239
- [ContextActionsBlockElement](type-aliases/ContextActionsBlockElement.md)

docs/english/reference/types/interfaces/ActionsBlock.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: ActionsBlock
44

5-
Defined in: [block-kit/blocks.ts:96](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L96)
5+
Defined in: [block-kit/blocks.ts:99](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L99)
66

77
## Description
88

@@ -24,7 +24,7 @@ Holds multiple interactive elements.
2424
optional block_id: string;
2525
```
2626

27-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
27+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
2828

2929
#### Description
3030

@@ -46,7 +46,7 @@ a message. If a message is updated, use a new `block_id`.
4646
elements: ActionsBlockElement[];
4747
```
4848

49-
Defined in: [block-kit/blocks.ts:105](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L105)
49+
Defined in: [block-kit/blocks.ts:108](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L108)
5050

5151
#### Description
5252

@@ -61,7 +61,7 @@ There is a maximum of 25 elements in each action block.
6161
type: "actions";
6262
```
6363

64-
Defined in: [block-kit/blocks.ts:100](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L100)
64+
Defined in: [block-kit/blocks.ts:103](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L103)
6565

6666
#### Description
6767

docs/english/reference/types/interfaces/Block.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: Block
44

5-
Defined in: [block-kit/blocks.ts:35](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L35)
5+
Defined in: [block-kit/blocks.ts:36](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L36)
66

77
## Extended by
88

@@ -17,6 +17,8 @@ Defined in: [block-kit/blocks.ts:35](https://github.com/slackapi/node-slack-sdk/
1717
- [`RichTextBlock`](RichTextBlock.md)
1818
- [`SectionBlock`](SectionBlock.md)
1919
- [`TableBlock`](TableBlock.md)
20+
- [`TaskCardBlock`](TaskCardBlock.md)
21+
- [`PlanBlock`](PlanBlock.md)
2022
- [`VideoBlock`](VideoBlock.md)
2123

2224
## Properties
@@ -27,7 +29,7 @@ Defined in: [block-kit/blocks.ts:35](https://github.com/slackapi/node-slack-sdk/
2729
optional block_id: string;
2830
```
2931

30-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
32+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
3133

3234
#### Description
3335

@@ -45,7 +47,7 @@ a message. If a message is updated, use a new `block_id`.
4547
type: string;
4648
```
4749

48-
Defined in: [block-kit/blocks.ts:39](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L39)
50+
Defined in: [block-kit/blocks.ts:40](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L40)
4951

5052
#### Description
5153

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[@slack/types](../index.md) / Chunk
2+
3+
# Interface: Chunk
4+
5+
Defined in: [chunk.ts:6](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/chunk.ts#L6)
6+
7+
Base interface for streaming message chunks.
8+
https://docs.slack.dev/messaging/sending-and-scheduling-messages#text-streaming
9+
10+
## Extended by
11+
12+
- [`MarkdownTextChunk`](MarkdownTextChunk.md)
13+
- [`PlanUpdateChunk`](PlanUpdateChunk.md)
14+
- [`TaskUpdateChunk`](TaskUpdateChunk.md)
15+
16+
## Properties
17+
18+
### type
19+
20+
```ts
21+
type: string;
22+
```
23+
24+
Defined in: [chunk.ts:7](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/chunk.ts#L7)

docs/english/reference/types/interfaces/ContextActionsBlock.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: ContextActionsBlock
44

5-
Defined in: [block-kit/blocks.ts:139](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L139)
5+
Defined in: [block-kit/blocks.ts:142](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L142)
66

77
## Description
88

@@ -24,7 +24,7 @@ Displays actions as contextual info, which can include both feedback buttons and
2424
optional block_id: string;
2525
```
2626

27-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
27+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
2828

2929
#### Description
3030

@@ -46,7 +46,7 @@ a message. If a message is updated, use a new `block_id`.
4646
elements: ContextActionsBlockElement[];
4747
```
4848

49-
Defined in: [block-kit/blocks.ts:147](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L147)
49+
Defined in: [block-kit/blocks.ts:150](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L150)
5050

5151
#### Description
5252

@@ -60,7 +60,7 @@ An array of [FeedbackButtons](FeedbackButtons.md) or [IconButton](IconButton.md)
6060
type: "context_actions";
6161
```
6262

63-
Defined in: [block-kit/blocks.ts:143](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L143)
63+
Defined in: [block-kit/blocks.ts:146](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L146)
6464

6565
#### Description
6666

docs/english/reference/types/interfaces/ContextBlock.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: ContextBlock
44

5-
Defined in: [block-kit/blocks.ts:118](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L118)
5+
Defined in: [block-kit/blocks.ts:121](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L121)
66

77
## Description
88

@@ -24,7 +24,7 @@ Displays contextual info, which can include both images and text.
2424
optional block_id: string;
2525
```
2626

27-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
27+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
2828

2929
#### Description
3030

@@ -46,7 +46,7 @@ a message. If a message is updated, use a new `block_id`.
4646
elements: ContextBlockElement[];
4747
```
4848

49-
Defined in: [block-kit/blocks.ts:127](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L127)
49+
Defined in: [block-kit/blocks.ts:130](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L130)
5050

5151
#### Description
5252

@@ -61,7 +61,7 @@ Maximum number of items is 10.
6161
type: "context";
6262
```
6363

64-
Defined in: [block-kit/blocks.ts:122](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L122)
64+
Defined in: [block-kit/blocks.ts:125](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L125)
6565

6666
#### Description
6767

docs/english/reference/types/interfaces/Dialog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ optional selected_options: SelectOption[];
105105
#### ~~subtype?~~
106106

107107
```ts
108-
optional subtype: "number" | "email" | "tel" | "url";
108+
optional subtype: "number" | "url" | "email" | "tel";
109109
```
110110

111111
#### ~~type~~

docs/english/reference/types/interfaces/DividerBlock.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: DividerBlock
44

5-
Defined in: [block-kit/blocks.ts:155](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L155)
5+
Defined in: [block-kit/blocks.ts:158](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L158)
66

77
## Description
88

@@ -25,7 +25,7 @@ different blocks inside of a message. The divider block is nice and neat, requir
2525
optional block_id: string;
2626
```
2727

28-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
28+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
2929

3030
#### Description
3131

@@ -47,7 +47,7 @@ a message. If a message is updated, use a new `block_id`.
4747
type: "divider";
4848
```
4949

50-
Defined in: [block-kit/blocks.ts:159](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L159)
50+
Defined in: [block-kit/blocks.ts:162](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L162)
5151

5252
#### Description
5353

docs/english/reference/types/interfaces/FileBlock.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: FileBlock
44

5-
Defined in: [block-kit/blocks.ts:169](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L169)
5+
Defined in: [block-kit/blocks.ts:172](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L172)
66

77
## Description
88

@@ -27,7 +27,7 @@ that contain remote files. If you want to add remote files to messages,
2727
optional block_id: string;
2828
```
2929

30-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
30+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
3131

3232
#### Description
3333

@@ -49,7 +49,7 @@ a message. If a message is updated, use a new `block_id`.
4949
external_id: string;
5050
```
5151

52-
Defined in: [block-kit/blocks.ts:181](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L181)
52+
Defined in: [block-kit/blocks.ts:184](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L184)
5353

5454
#### Description
5555

@@ -63,7 +63,7 @@ The external unique ID for this file.
6363
source: string;
6464
```
6565

66-
Defined in: [block-kit/blocks.ts:177](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L177)
66+
Defined in: [block-kit/blocks.ts:180](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L180)
6767

6868
#### Description
6969

@@ -77,7 +77,7 @@ At the moment, source will always be `remote` for a remote file.
7777
type: "file";
7878
```
7979

80-
Defined in: [block-kit/blocks.ts:173](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L173)
80+
Defined in: [block-kit/blocks.ts:176](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L176)
8181

8282
#### Description
8383

docs/english/reference/types/interfaces/HeaderBlock.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: HeaderBlock
44

5-
Defined in: [block-kit/blocks.ts:189](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L189)
5+
Defined in: [block-kit/blocks.ts:192](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L192)
66

77
## Description
88

@@ -25,7 +25,7 @@ font. Use it to delineate between different groups of content in your app's surf
2525
optional block_id: string;
2626
```
2727

28-
Defined in: [block-kit/blocks.ts:47](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L47)
28+
Defined in: [block-kit/blocks.ts:48](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L48)
2929

3030
#### Description
3131

@@ -47,7 +47,7 @@ a message. If a message is updated, use a new `block_id`.
4747
text: PlainTextElement;
4848
```
4949

50-
Defined in: [block-kit/blocks.ts:198](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L198)
50+
Defined in: [block-kit/blocks.ts:201](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L201)
5151

5252
#### Description
5353

@@ -62,7 +62,7 @@ Maximum length for the text in this field is 150 characters.
6262
type: "header";
6363
```
6464

65-
Defined in: [block-kit/blocks.ts:193](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L193)
65+
Defined in: [block-kit/blocks.ts:196](https://github.com/slackapi/node-slack-sdk/blob/main/packages/types/src/block-kit/blocks.ts#L196)
6666

6767
#### Description
6868

0 commit comments

Comments
 (0)