Skip to content

Commit 3edcb80

Browse files
committed
🐛 Fix indentation in flex message descriptions for better readability.
1 parent f52bcf5 commit 3edcb80

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/index.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ const flexMessageSchema = z.object({
9696
.passthrough()
9797
.describe(
9898
"Flexible container structure following LINE Flex Message format. For 'bubble' type, can include header, " +
99-
"hero, body, footer, and styles sections. For 'carousel' type, includes an array of bubble containers in " +
100-
"the 'contents' property.",
99+
"hero, body, footer, and styles sections. For 'carousel' type, includes an array of bubble containers in " +
100+
"the 'contents' property.",
101101
),
102102
});
103103

@@ -128,7 +128,7 @@ server.tool(
128128
server.tool(
129129
"push_flex_message",
130130
"Push a highly customizable flex message to a user via LINE. Supports both bubble (single container) and carousel " +
131-
"(multiple swipeable bubbles) layouts.",
131+
"(multiple swipeable bubbles) layouts.",
132132
{
133133
userId: userIdSchema,
134134
message: flexMessageSchema,
@@ -155,7 +155,7 @@ server.tool(
155155
server.tool(
156156
"broadcast_text_message",
157157
"Broadcast a simple text message via LINE to all users who have followed your LINE Official Account. Use this for sending " +
158-
"plain text messages without formatting. Please be aware that this message will be sent to all users.",
158+
"plain text messages without formatting. Please be aware that this message will be sent to all users.",
159159
{
160160
message: textMessageSchema,
161161
},
@@ -176,8 +176,8 @@ server.tool(
176176
server.tool(
177177
"broadcast_flex_message",
178178
"Broadcast a highly customizable flex message via LINE to all users who have added your LINE Official Account. " +
179-
"Supports both bubble (single container) and carousel (multiple swipeable bubbles) layouts. Please be aware that " +
180-
"this message will be sent to all users.",
179+
"Supports both bubble (single container) and carousel (multiple swipeable bubbles) layouts. Please be aware that " +
180+
"this message will be sent to all users.",
181181
{
182182
message: flexMessageSchema,
183183
},
@@ -228,7 +228,7 @@ server.tool(
228228
totalUsage: messageQuotaConsumptionResponse.totalUsage,
229229
};
230230
return createSuccessResponse(response);
231-
}
231+
},
232232
);
233233

234234
server.tool(

0 commit comments

Comments
 (0)