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
'If you dont have the slug (given under "slug" or "id" key in a previous tool call data) or id of the group of users, use the search tool with the group of user name, the group id or slug will be in the first result, else use the previously mentioned slug or id.'
11
12
12
-
exportconstUSER_PREVIEW_OUTPUT_SCHEMA=z.object({
13
-
id: z.number().optional().nullable().describe('The ID of the user'),
14
-
slug: z.string().optional().nullable().describe('The slug of the user'),
15
-
item_type: z.literal('user').describe('The type of the item, always user'),
16
-
given_name: z.string().optional().nullable().describe('The given name of the user'),
17
-
family_name: z.string().optional().nullable().describe('The family name of the user'),
18
-
job: z.string().optional().nullable().nullable().describe('The job or title of the user'),
19
-
email: z.string().optional().nullable().describe('The email of the user'),
20
-
link_url: z.string().optional().nullable().describe('The URL link to the user profile'),
21
-
item_image: z.string().optional().nullable().describe('The image URL of the user profile'),
13
+
exportconstUSER_PREVIEW_OUTPUT_SCHEMA=N.object({
14
+
id: N.number().describe('The ID of the user'),
15
+
slug: N.string().describe('The slug of the user'),
16
+
item_type: N.literal('user').describe('The type of the item, always user'),
17
+
given_name: N.string().describe('The given name of the user'),
18
+
family_name: N.string().describe('The family name of the user'),
19
+
job: N.string().describe('The job or title of the user'),
20
+
email: N.string().describe('The email of the user'),
21
+
link_url: N.string().describe('The URL link to the user profile'),
22
+
item_image: N.string().describe('The image URL of the user profile'),
0 commit comments