@@ -96,8 +96,8 @@ const flexMessageSchema = z.object({
96
96
. passthrough ( )
97
97
. describe (
98
98
"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." ,
101
101
) ,
102
102
} ) ;
103
103
@@ -128,7 +128,7 @@ server.tool(
128
128
server . tool (
129
129
"push_flex_message" ,
130
130
"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." ,
132
132
{
133
133
userId : userIdSchema ,
134
134
message : flexMessageSchema ,
@@ -155,7 +155,7 @@ server.tool(
155
155
server . tool (
156
156
"broadcast_text_message" ,
157
157
"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." ,
159
159
{
160
160
message : textMessageSchema ,
161
161
} ,
@@ -176,8 +176,8 @@ server.tool(
176
176
server . tool (
177
177
"broadcast_flex_message" ,
178
178
"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." ,
181
181
{
182
182
message : flexMessageSchema ,
183
183
} ,
@@ -228,7 +228,7 @@ server.tool(
228
228
totalUsage : messageQuotaConsumptionResponse . totalUsage ,
229
229
} ;
230
230
return createSuccessResponse ( response ) ;
231
- }
231
+ } ,
232
232
) ;
233
233
234
234
server . tool (
0 commit comments