From f0eac3fed54be56d73b4e4ad4fdc92d749fd8ee6 Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Wed, 19 Nov 2025 16:10:03 -0800 Subject: [PATCH 1/2] docs(types): remove note of maximum length for raw_text --- packages/types/src/block-kit/composition-objects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/block-kit/composition-objects.ts b/packages/types/src/block-kit/composition-objects.ts index f4fb416a8..f9a683668 100644 --- a/packages/types/src/block-kit/composition-objects.ts +++ b/packages/types/src/block-kit/composition-objects.ts @@ -183,7 +183,7 @@ export interface RawTextElement { */ type: 'raw_text'; /** - * @description The text for the block. The minimum length is 1 and maximum length is 3000 characters. + * @description The text for the block. The minimum length is 1. */ text: string; } From e44a0b14bf42b8ee4a836b1a75839cafd9dde4d6 Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Fri, 21 Nov 2025 13:31:03 -0800 Subject: [PATCH 2/2] docs: give abstract amounts a meaningful unit Co-authored-by: Luke Russell <31357343+lukegalbraithrussell@users.noreply.github.com> --- packages/types/src/block-kit/composition-objects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/block-kit/composition-objects.ts b/packages/types/src/block-kit/composition-objects.ts index f9a683668..886830344 100644 --- a/packages/types/src/block-kit/composition-objects.ts +++ b/packages/types/src/block-kit/composition-objects.ts @@ -183,7 +183,7 @@ export interface RawTextElement { */ type: 'raw_text'; /** - * @description The text for the block. The minimum length is 1. + * @description The text for the block. The minimum length is 1 character. */ text: string; }