You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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
},
@@ -239,30 +239,21 @@ server.tool(
239
239
.string()
240
240
.optional()
241
241
.describe(
242
-
"Continuation token for pagination. If omitted, fetches from the beginning.",
242
+
"Value of the continuation token found in the next property of the JSON object returned in the response. Include this parameter to get the next array of user IDs. If omitted, fetches from the beginning.",
243
243
),
244
244
limit: z
245
-
.number()
246
245
.int()
247
246
.min(1)
248
247
.max(1000)
249
-
.optional()
248
+
.default(300)
250
249
.describe(
251
-
"Maximum number of user IDs to retrieve (1-1000). Default is 1000.",
250
+
"Maximum number of user IDs to retrieve (1-1000). Default is 300.",
0 commit comments