@mondaydotcomorg/agent-toolkit 2.0.7 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -350,9 +350,12 @@ declare const allMondayApiToolSchema: {
350
350
  declare class AllMondayApiTool extends BaseMondayApiTool<typeof allMondayApiToolSchema> {
351
351
  name: string;
352
352
  type: ToolType;
353
+ private static schemaCache;
353
354
  constructor(mondayApi: ApiClient, context?: MondayApiToolContext);
354
355
  getDescription(): string;
355
356
  getInputSchema(): typeof allMondayApiToolSchema;
357
+ private loadSchema;
358
+ private validateOperation;
356
359
  execute(input: ToolInputType<typeof allMondayApiToolSchema>): Promise<ToolOutputType<never>>;
357
360
  }
358
361
 
@@ -304,7 +304,7 @@
304
304
  type
305
305
  }
306
306
  }
307
- `,Wt={itemId:e.z.number()};class Zt extends h{constructor(){super(...arguments),this.name="delete_item",this.type=exports.ToolType.MUTATION}getDescription(){return"Delete an item"}getInputSchema(){return Wt}async execute(e){const p={id:e.itemId.toString()},a=await this.mondayApi.request(Rt,p);return{content:`Item ${a.delete_item?.id} successfully deleted`}}}const ei={term:e.z.string()},pi={boardId:e.z.number(),...ei};class ai extends h{constructor(){super(...arguments),this.name="get_board_items_by_name",this.type=exports.ToolType.QUERY}getDescription(){return"Get items by board id and term"}getInputSchema(){return this.context?.boardId?ei:pi}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),term:e.term},a=await this.mondayApi.request($t,p);return{content:`Items ${a.boards?.[0]?.items_page?.items?.map((e=>`name: ${e.name}, id: ${e.id}`)).join(", ")} successfully fetched`}}}const di={name:e.z.string().describe("The name of the new item to be created, must be relevant to the user's request"),groupId:e.z.string().optional().describe("The id of the group id to which the new item will be added, if its not clearly specified, leave empty"),columnValues:e.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"},\\"dropdown_id\\":\\"value\\", \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"')},ti={boardId:e.z.number().describe("The id of the board to which the new item will be added"),...di};class ii extends h{constructor(){super(...arguments),this.name="create_item",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new item in a monday.com board"}getInputSchema(){return this.context?.boardId?di:ti}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),itemName:e.name,groupId:e.groupId,columnValues:e.columnValues},a=await this.mondayApi.request(Ut,p);return{content:`Item ${a.create_item?.id} successfully created`}}}const ni={itemId:e.z.number().describe("The id of the item to which the update will be added"),body:e.z.string().describe("The update to be created, must be relevant to the user's request")};class oi extends h{constructor(){super(...arguments),this.name="create_update",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new update in a monday.com board"}getInputSchema(){return ni}async execute(e){const p={itemId:e.itemId.toString(),body:e.body},a=await this.mondayApi.request(Pt,p);return{content:`Update ${a.create_update?.id} successfully created on item ${e.itemId}`}}}const ri={boardId:e.z.number().describe("The id of the board to get the schema of")};class si extends h{constructor(){super(...arguments),this.name="get_board_schema",this.type=exports.ToolType.QUERY}getDescription(){return"Get board schema (columns and groups) by board id"}getInputSchema(){if(!this.context?.boardId)return ri}async execute(e){const p=this.context?.boardId??e.boardId,a={boardId:p.toString()},d=await this.mondayApi.request(Bt,a);return{content:`The current schema of the board ${p} is: \n \n\nColumns:\n ${d.boards?.[0]?.columns?.map((e=>`Id - ${e?.id}\n Title - ${e?.title}\n Type - ${e?.type}`)).join("\n")}\n \n\nGroups:\n ${d.boards?.[0]?.groups?.map((e=>`Id - ${e?.id}\n Title - ${e?.title}`)).join("\n")}`}}}const li={name:e.z.string().optional().describe("The name or partial name of the user to get")};class mi extends h{constructor(){super(...arguments),this.name="get_users_by_name",this.type=exports.ToolType.QUERY}getDescription(){return"Get users, can be filtered by name or partial name"}getInputSchema(){return li}async execute(e){const p={name:e.name},a=await this.mondayApi.request(Mt,p);return{content:`Relevant users:\n ${a.users?.map((e=>` id: ${e?.id}, name: ${e?.name}, title: ${e?.title}`)).join("\n")}`}}}const ui={itemId:e.z.number().describe("The ID of the item to be updated"),columnValues:e.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"}, \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"')},ci={boardId:e.z.number().describe("The ID of the board that contains the item to be updated"),...ui};class vi extends h{constructor(){super(...arguments),this.name="change_item_column_values",this.type=exports.ToolType.MUTATION}getDescription(){return"Change the column values of an item in a monday.com board"}getInputSchema(){return this.context?.boardId?ui:ci}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),itemId:e.itemId.toString(),columnValues:e.columnValues},a=await this.mondayApi.request(jt,p);return{content:`Item ${a.change_multiple_column_values?.id} successfully updated with the new column values`}}}const hi={itemId:e.z.number().describe("The id of the item to which the update will be added"),groupId:e.z.string().describe("The id of the group to which the item will be moved")};class fi extends h{constructor(){super(...arguments),this.name="move_item_to_group",this.type=exports.ToolType.MUTATION}getDescription(){return"Move an item to a group in a monday.com board"}getInputSchema(){return hi}async execute(e){const p={itemId:e.itemId.toString(),groupId:e.groupId},a=await this.mondayApi.request(Gt,p);return{content:`Item ${a.move_item_to_group?.id} successfully moved to group ${e.groupId}`}}}var _i,yi,wi,Ti,Ni,gi,Ei,bi,Ii,Si,Di,Ai,Oi,Vi,xi,Ci,Li,Fi,ki,Ri,$i,Ui,Pi,Bi,Mi,ji,Gi,qi,zi,Yi,Ji,Qi,Ki,Hi,Xi,Wi,Zi,en,pn,an,dn,tn,nn,on,rn,sn,ln,mn,un,cn,vn,hn,fn,_n,yn;!function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(_i||(_i={})),function(e){e.All="all",e.Columns="columns",e.Gallery="gallery"}(yi||(yi={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(wi||(wi={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.PortalUser="PORTAL_USER",e.ViewOnly="VIEW_ONLY"}(Ti||(Ti={})),function(e){e.Communication="communication",e.Description="description",e.Name="name"}(Ni||(Ni={})),function(e){e.Private="private",e.Public="public",e.Share="share"}(gi||(gi={})),function(e){e.Board="board",e.CustomObject="custom_object",e.Document="document",e.SubItemsBoard="sub_items_board"}(Ei||(Ei={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(bi||(bi={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(Ii||(Ii={})),function(e){e.Description="description",e.Title="title"}(Si||(Si={})),function(e){e.AutoNumber="auto_number",e.BoardRelation="board_relation",e.Button="button",e.Checkbox="checkbox",e.ColorPicker="color_picker",e.Country="country",e.CreationLog="creation_log",e.Date="date",e.Dependency="dependency",e.DirectDoc="direct_doc",e.Doc="doc",e.Dropdown="dropdown",e.Email="email",e.File="file",e.Formula="formula",e.Group="group",e.Hour="hour",e.Integration="integration",e.ItemAssignees="item_assignees",e.ItemId="item_id",e.LastUpdated="last_updated",e.Link="link",e.Location="location",e.LongText="long_text",e.Mirror="mirror",e.Name="name",e.Numbers="numbers",e.People="people",e.Person="person",e.Phone="phone",e.Progress="progress",e.Rating="rating",e.Status="status",e.Subtasks="subtasks",e.Tags="tags",e.Team="team",e.Text="text",e.TimeTracking="time_tracking",e.Timeline="timeline",e.Unsupported="unsupported",e.Vote="vote",e.Week="week",e.WorldClock="world_clock"}(Di||(Di={})),function(e){e.BrinkPink="BRINK_PINK",e.CelticBlue="CELTIC_BLUE",e.CornflowerBlue="CORNFLOWER_BLUE",e.DingyDungeon="DINGY_DUNGEON",e.GoGreen="GO_GREEN",e.Gray="GRAY",e.LightDeepPink="LIGHT_DEEP_PINK",e.LightHotPink="LIGHT_HOT_PINK",e.MayaBlue="MAYA_BLUE",e.MediumTurquoise="MEDIUM_TURQUOISE",e.ParadisePink="PARADISE_PINK",e.PhilippineGreen="PHILIPPINE_GREEN",e.PhilippineYellow="PHILIPPINE_YELLOW",e.SlateBlue="SLATE_BLUE",e.VividCerulean="VIVID_CERULEAN",e.YankeesBlue="YANKEES_BLUE",e.YellowGreen="YELLOW_GREEN",e.YellowOrange="YELLOW_ORANGE"}(Ai||(Ai={})),function(e){e.Ascending="ASCENDING",e.Camera="CAMERA",e.Conference="CONFERENCE",e.Flag="FLAG",e.Gift="GIFT",e.Headphones="HEADPHONES",e.Homekeys="HOMEKEYS",e.Location="LOCATION",e.Notebook="NOTEBOOK",e.Paperplane="PAPERPLANE",e.Plane="PLANE",e.Pliers="PLIERS",e.Tripod="TRIPOD",e.Twoflags="TWOFLAGS",e.Utencils="UTENCILS"}(Oi||(Oi={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(Vi||(Vi={})),function(e){e.Monthly="MONTHLY",e.Yearly="YEARLY"}(xi||(xi={})),function(e){e.BulletedList="bulleted_list",e.CheckList="check_list",e.Code="code",e.Divider="divider",e.Image="image",e.LargeTitle="large_title",e.Layout="layout",e.MediumTitle="medium_title",e.NormalText="normal_text",e.NoticeBox="notice_box",e.NumberedList="numbered_list",e.PageBreak="page_break",e.Quote="quote",e.SmallTitle="small_title",e.Table="table",e.Video="video"}(Ci||(Ci={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(Li||(Li={})),function(e){e.DuplicateBoardWithPulses="duplicate_board_with_pulses",e.DuplicateBoardWithPulsesAndUpdates="duplicate_board_with_pulses_and_updates",e.DuplicateBoardWithStructure="duplicate_board_with_structure"}(Fi||(Fi={})),function(e){e.Asset="asset",e.Box="box",e.Doc="doc",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(ki||(ki={})),function(e){e.Box="box",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(Ri||(Ri={})),function(e){e.Monday="monday",e.Sunday="sunday"}($i||($i={})),function(e){e.Aquamarine="AQUAMARINE",e.BrightBlue="BRIGHT_BLUE",e.BrightGreen="BRIGHT_GREEN",e.ChiliBlue="CHILI_BLUE",e.DarkOrange="DARK_ORANGE",e.DarkPurple="DARK_PURPLE",e.DarkRed="DARK_RED",e.DoneGreen="DONE_GREEN",e.Indigo="INDIGO",e.Lipstick="LIPSTICK",e.Null="NULL",e.Purple="PURPLE",e.SofiaPink="SOFIA_PINK",e.StuckRed="STUCK_RED",e.Sunset="SUNSET",e.WorkingOrange="WORKING_ORANGE"}(Ui||(Ui={})),function(e){e.Folder="FOLDER",e.Morebelow="MOREBELOW",e.Morebelowfilled="MOREBELOWFILLED",e.Null="NULL",e.Work="WORK"}(Pi||(Pi={})),function(e){e.FontWeightBold="FONT_WEIGHT_BOLD",e.FontWeightLight="FONT_WEIGHT_LIGHT",e.FontWeightNormal="FONT_WEIGHT_NORMAL",e.FontWeightVeryLight="FONT_WEIGHT_VERY_LIGHT",e.Null="NULL"}(Bi||(Bi={})),function(e){e.Color="color",e.Position="position",e.RelativePositionAfter="relative_position_after",e.RelativePositionBefore="relative_position_before",e.Title="title"}(Mi||(Mi={})),function(e){e.Error="ERROR"}(ji||(ji={})),function(e){e.Asc="asc",e.Desc="desc"}(Gi||(Gi={})),function(e){e.And="and",e.Or="or"}(qi||(qi={})),function(e){e.AnyOf="any_of",e.Between="between",e.ContainsTerms="contains_terms",e.ContainsText="contains_text",e.EndsWith="ends_with",e.GreaterThan="greater_than",e.GreaterThanOrEquals="greater_than_or_equals",e.IsEmpty="is_empty",e.IsNotEmpty="is_not_empty",e.LowerThan="lower_than",e.LowerThanOrEqual="lower_than_or_equal",e.NotAnyOf="not_any_of",e.NotContainsText="not_contains_text",e.StartsWith="starts_with",e.WithinTheLast="within_the_last",e.WithinTheNext="within_the_next"}(zi||(zi={})),function(e){e.Person="person",e.Team="team"}(Yi||(Yi={})),function(e){e.Active="active",e.Deleted="deleted",e.Inactive="inactive"}(Ji||(Ji={})),function(e){e.Dropdown="dropdown",e.Status="status"}(Qi||(Qi={})),function(e){e.Post="Post",e.Project="Project"}(Ki||(Ki={})),function(e){e.Left="left",e.Right="right"}(Hi||(Hi={})),function(e){e.AfterAt="after_at",e.BeforeAt="before_at"}(Xi||(Xi={})),function(e){e.Crm="crm",e.Dev="dev",e.Forms="forms",e.Knowledge="knowledge",e.Service="service",e.Whiteboard="whiteboard",e.WorkManagement="work_management",e.Workflows="workflows"}(Wi||(Wi={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(Zi||(Zi={})),function(e){e.Active="active",e.All="all",e.Archived="archived",e.Deleted="deleted"}(en||(en={})),function(e){e.AmericanGray="american_gray",e.Aquamarine="aquamarine",e.Berry="berry",e.Blackish="blackish",e.BrightBlue="bright_blue",e.BrightGreen="bright_green",e.Brown="brown",e.Bubble="bubble",e.ChiliBlue="chili_blue",e.Coffee="coffee",e.DarkBlue="dark_blue",e.DarkIndigo="dark_indigo",e.DarkOrange="dark_orange",e.DarkPurple="dark_purple",e.DarkRed="dark_red",e.DoneGreen="done_green",e.EggYolk="egg_yolk",e.Explosive="explosive",e.GrassGreen="grass_green",e.Indigo="indigo",e.Lavender="lavender",e.Lilac="lilac",e.Lipstick="lipstick",e.Navy="navy",e.Orchid="orchid",e.Peach="peach",e.Pecan="pecan",e.Purple="purple",e.River="river",e.Royal="royal",e.Saladish="saladish",e.Sky="sky",e.SofiaPink="sofia_pink",e.Steel="steel",e.StuckRed="stuck_red",e.Sunset="sunset",e.Tan="tan",e.Teal="teal",e.Winter="winter",e.WorkingOrange="working_orange"}(pn||(pn={})),function(e){e.Nominal="nominal",e.Percent="percent"}(an||(an={})),function(e){e.OneTime="one_time",e.Recurring="recurring"}(dn||(dn={})),function(e){e.Monthly="monthly",e.Yearly="yearly"}(tn||(tn={})),function(e){e.Active="active",e.Inactive="inactive"}(nn||(nn={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UpdateEmailDomainError="UPDATE_EMAIL_DOMAIN_ERROR",e.UserNotFound="USER_NOT_FOUND"}(on||(on={})),function(e){e.InvalidField="INVALID_FIELD"}(rn||(rn={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(sn||(sn={})),function(e){e.All="all",e.Guests="guests",e.NonGuests="non_guests",e.NonPending="non_pending"}(ln||(ln={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.PortalUser="PORTAL_USER",e.ViewOnly="VIEW_ONLY"}(mn||(mn={})),function(e){e.Current="current",e.Deprecated="deprecated",e.Dev="dev",e.Maintenance="maintenance",e.OldMaintenance="old__maintenance",e.OldPreviousMaintenance="old_previous_maintenance",e.PreviousMaintenance="previous_maintenance",e.ReleaseCandidate="release_candidate"}(un||(un={})),function(e){e.ChangeColumnValue="change_column_value",e.ChangeName="change_name",e.ChangeSpecificColumnValue="change_specific_column_value",e.ChangeStatusColumnValue="change_status_column_value",e.ChangeSubitemColumnValue="change_subitem_column_value",e.ChangeSubitemName="change_subitem_name",e.CreateColumn="create_column",e.CreateItem="create_item",e.CreateSubitem="create_subitem",e.CreateSubitemUpdate="create_subitem_update",e.CreateUpdate="create_update",e.DeleteUpdate="delete_update",e.EditUpdate="edit_update",e.ItemArchived="item_archived",e.ItemDeleted="item_deleted",e.ItemMovedToAnyGroup="item_moved_to_any_group",e.ItemMovedToSpecificGroup="item_moved_to_specific_group",e.ItemRestored="item_restored",e.MoveSubitem="move_subitem",e.SubitemArchived="subitem_archived",e.SubitemDeleted="subitem_deleted"}(cn||(cn={})),function(e){e.Closed="closed",e.Open="open"}(vn||(vn={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(hn||(hn={})),function(e){e.CreatedAt="created_at"}(fn||(fn={})),function(e){e.Query="QUERY",e.Mutation="MUTATION",e.Subscription="SUBSCRIPTION",e.Field="FIELD",e.FragmentDefinition="FRAGMENT_DEFINITION",e.FragmentSpread="FRAGMENT_SPREAD",e.InlineFragment="INLINE_FRAGMENT",e.VariableDefinition="VARIABLE_DEFINITION",e.Schema="SCHEMA",e.Scalar="SCALAR",e.Object="OBJECT",e.FieldDefinition="FIELD_DEFINITION",e.ArgumentDefinition="ARGUMENT_DEFINITION",e.Interface="INTERFACE",e.Union="UNION",e.Enum="ENUM",e.EnumValue="ENUM_VALUE",e.InputObject="INPUT_OBJECT",e.InputFieldDefinition="INPUT_FIELD_DEFINITION"}(_n||(_n={})),function(e){e.Scalar="SCALAR",e.Object="OBJECT",e.Interface="INTERFACE",e.Union="UNION",e.Enum="ENUM",e.InputObject="INPUT_OBJECT",e.List="LIST",e.NonNull="NON_NULL"}(yn||(yn={}));const wn={boardName:e.z.string().describe("The name of the board to create"),boardKind:e.z.nativeEnum(gi).default(gi.Public).describe("The kind of board to create"),boardDescription:e.z.string().optional().describe("The description of the board to create"),workspaceId:e.z.string().optional().describe("The ID of the workspace to create the board in")};class Tn extends h{constructor(){super(...arguments),this.name="create_board",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a monday.com board"}getInputSchema(){return wn}async execute(e){const p={boardName:e.boardName,boardKind:e.boardKind,boardDescription:e.boardDescription,workspaceId:e.workspaceId},a=await this.mondayApi.request(qt,p);return{content:`Board ${a.create_board?.id} successfully created`}}}const Nn={columnType:e.z.nativeEnum(Di).describe("The type of the column to be created"),columnTitle:e.z.string().describe("The title of the column to be created"),columnDescription:e.z.string().optional().describe("The description of the column to be created"),columnSettings:e.z.array(e.z.string()).optional().describe("The default values for the new column (relevant only for column type 'status' or 'dropdown') when possible make the values relevant to the user's request")},gn={boardId:e.z.number().describe("The id of the board to which the new column will be added"),...Nn};class En extends h{constructor(){super(...arguments),this.name="create_column",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new column in a monday.com board"}getInputSchema(){return this.context?.boardId?Nn:gn}async execute(e){const p=this.context?.boardId??e.boardId;let a;e.columnSettings&&e.columnType===Di.Status?a=JSON.stringify({labels:Object.fromEntries(e.columnSettings.map(((e,p)=>[String(p+1),e])))}):e.columnSettings&&e.columnType===Di.Dropdown&&(a=JSON.stringify({settings:{labels:e.columnSettings.map(((e,p)=>({id:p+1,name:e})))}}));const d={boardId:p.toString(),columnType:e.columnType,columnTitle:e.columnTitle,columnDescription:e.columnDescription,columnSettings:a},t=await this.mondayApi.request(zt,d);return{content:`Column ${t.create_column?.id} successfully created`}}}const bn={columnId:e.z.string().describe("The id of the column to be deleted")},In={boardId:e.z.number().describe("The id of the board to which the new column will be added"),...bn};class Sn extends h{constructor(){super(...arguments),this.name="delete_column",this.type=exports.ToolType.MUTATION}getDescription(){return"Delete a column from a monday.com board"}getInputSchema(){return this.context?.boardId?bn:In}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),columnId:e.columnId},a=await this.mondayApi.request(Yt,p);return{content:`Column ${a.delete_column?.id} successfully deleted`}}}const Dn={};let An=null;async function On(e,p){const a=await async function(e){if(Dn[e])return Dn[e];try{if(An){const p=await An.rawRequest(Qt),{data:a}=p,d=_d(a);return Dn[e]=d,d}throw new Error("Monday API client is not available")}catch(e){throw new Error(`Failed to load GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`)}}(p);var d;return fd(a,new me(e,d).parseDocument()).map((e=>e.message))}const Vn={query:e.z.string().describe("Custom GraphQL query/mutation. you need to provide the full query / mutation"),variables:e.z.string().describe("JSON string containing the variables for the GraphQL operation")};class xn extends h{constructor(e,p){super(e,p),this.name="all_monday_api",this.type=exports.ToolType.ALL_API,An=e}getDescription(){return"Execute any Monday.com API operation by generating GraphQL queries and mutations dynamically"}getInputSchema(){return Vn}async execute(e){const{query:p,variables:a}=e;try{let e={};try{e=JSON.parse(a)}catch(e){return{content:`Error parsing variables: ${e instanceof Error?e.message:"Unknown error"}`}}const d=this.mondayApi.apiVersion,t=await On(p,d);if(t.length>0)return{content:t.join(", ")};const i=await this.mondayApi.request(p,e);return{content:JSON.stringify(i)}}catch(e){const p=e instanceof Error?e.message:"Unknown error";if(e instanceof Error&&"response"in e){const p=e;if(p.response?.errors)return{content:p.response.errors.map((e=>e.message)).join(", ")}}return{content:p}}}}const Cn={random_string:e.z.string().describe("Dummy parameter for no-parameter tools").optional()};class Ln extends h{constructor(){super(...arguments),this.name="get_graphql_schema",this.type=exports.ToolType.ALL_API}getDescription(){return"Fetch the Monday.com GraphQL schema structure including query and mutation definitions"}getInputSchema(){return Cn}async execute(){try{const e=await this.mondayApi.request(Jt),p=e.queryType?.fields?.map((e=>`- ${e.name}${e.description?`: ${e.description}`:""}`)).join("\n")||"No query fields found",a=e.mutationType?.fields?.map((e=>`- ${e.name}${e.description?`: ${e.description}`:""}`)).join("\n")||"No mutation fields found",d=e.__schema,t=d?.types?.filter((e=>e.name&&!e.name.startsWith("__"))).map((e=>`- ${e.name} (${e.kind||"unknown"})`)).join("\n")||"No types found";return{content:`\n## GraphQL Schema\n- Query Type: ${e.__schema?.queryType?.name}\n- Mutation Type: ${e.__schema?.mutationType?.name}\n\n## Query Fields\n${p}\n\n## Mutation Fields\n${a}\n\n## Available Types\n${t}\n\nTo get detailed information about a specific type, use the get_type_details tool with the type name.\nFor example: get_type_details(typeName: "Board") to see Board type details.\n`}}catch(e){return{content:`Error fetching GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`}}}}const Fn={typeName:e.z.string().describe("The name of the GraphQL type to get details for")};class kn extends h{constructor(){super(...arguments),this.name="get_type_details",this.type=exports.ToolType.ALL_API}getDescription(){return"Get detailed information about a specific GraphQL type from the Monday.com API schema"}getInputSchema(){return Fn}async execute(e){try{if(!e.typeName)return{content:"Error: typeName is required. Please provide a valid GraphQL type name."};const a=(p=e.typeName,kt`
307
+ `,Wt={itemId:e.z.number()};class Zt extends h{constructor(){super(...arguments),this.name="delete_item",this.type=exports.ToolType.MUTATION}getDescription(){return"Delete an item"}getInputSchema(){return Wt}async execute(e){const p={id:e.itemId.toString()},a=await this.mondayApi.request(Rt,p);return{content:`Item ${a.delete_item?.id} successfully deleted`}}}const ei={term:e.z.string()},pi={boardId:e.z.number(),...ei};class ai extends h{constructor(){super(...arguments),this.name="get_board_items_by_name",this.type=exports.ToolType.QUERY}getDescription(){return"Get items by board id and term"}getInputSchema(){return this.context?.boardId?ei:pi}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),term:e.term},a=await this.mondayApi.request($t,p);return{content:`Items ${a.boards?.[0]?.items_page?.items?.map((e=>`name: ${e.name}, id: ${e.id}`)).join(", ")} successfully fetched`}}}const di={name:e.z.string().describe("The name of the new item to be created, must be relevant to the user's request"),groupId:e.z.string().optional().describe("The id of the group id to which the new item will be added, if its not clearly specified, leave empty"),columnValues:e.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"},\\"dropdown_id\\":\\"value\\", \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"')},ti={boardId:e.z.number().describe("The id of the board to which the new item will be added"),...di};class ii extends h{constructor(){super(...arguments),this.name="create_item",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new item in a monday.com board"}getInputSchema(){return this.context?.boardId?di:ti}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),itemName:e.name,groupId:e.groupId,columnValues:e.columnValues},a=await this.mondayApi.request(Ut,p);return{content:`Item ${a.create_item?.id} successfully created`}}}const ni={itemId:e.z.number().describe("The id of the item to which the update will be added"),body:e.z.string().describe("The update to be created, must be relevant to the user's request")};class oi extends h{constructor(){super(...arguments),this.name="create_update",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new update in a monday.com board"}getInputSchema(){return ni}async execute(e){const p={itemId:e.itemId.toString(),body:e.body},a=await this.mondayApi.request(Pt,p);return{content:`Update ${a.create_update?.id} successfully created on item ${e.itemId}`}}}const ri={boardId:e.z.number().describe("The id of the board to get the schema of")};class si extends h{constructor(){super(...arguments),this.name="get_board_schema",this.type=exports.ToolType.QUERY}getDescription(){return"Get board schema (columns and groups) by board id"}getInputSchema(){if(!this.context?.boardId)return ri}async execute(e){const p=this.context?.boardId??e.boardId,a={boardId:p.toString()},d=await this.mondayApi.request(Bt,a);return{content:`The current schema of the board ${p} is: \n \n\nColumns:\n ${d.boards?.[0]?.columns?.map((e=>`Id - ${e?.id}\n Title - ${e?.title}\n Type - ${e?.type}`)).join("\n")}\n \n\nGroups:\n ${d.boards?.[0]?.groups?.map((e=>`Id - ${e?.id}\n Title - ${e?.title}`)).join("\n")}`}}}const li={name:e.z.string().optional().describe("The name or partial name of the user to get")};class mi extends h{constructor(){super(...arguments),this.name="get_users_by_name",this.type=exports.ToolType.QUERY}getDescription(){return"Get users, can be filtered by name or partial name"}getInputSchema(){return li}async execute(e){const p={name:e.name},a=await this.mondayApi.request(Mt,p);return{content:`Relevant users:\n ${a.users?.map((e=>` id: ${e?.id}, name: ${e?.name}, title: ${e?.title}`)).join("\n")}`}}}const ui={itemId:e.z.number().describe("The ID of the item to be updated"),columnValues:e.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"}, \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"')},ci={boardId:e.z.number().describe("The ID of the board that contains the item to be updated"),...ui};class vi extends h{constructor(){super(...arguments),this.name="change_item_column_values",this.type=exports.ToolType.MUTATION}getDescription(){return"Change the column values of an item in a monday.com board"}getInputSchema(){return this.context?.boardId?ui:ci}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),itemId:e.itemId.toString(),columnValues:e.columnValues},a=await this.mondayApi.request(jt,p);return{content:`Item ${a.change_multiple_column_values?.id} successfully updated with the new column values`}}}const hi={itemId:e.z.number().describe("The id of the item to which the update will be added"),groupId:e.z.string().describe("The id of the group to which the item will be moved")};class fi extends h{constructor(){super(...arguments),this.name="move_item_to_group",this.type=exports.ToolType.MUTATION}getDescription(){return"Move an item to a group in a monday.com board"}getInputSchema(){return hi}async execute(e){const p={itemId:e.itemId.toString(),groupId:e.groupId},a=await this.mondayApi.request(Gt,p);return{content:`Item ${a.move_item_to_group?.id} successfully moved to group ${e.groupId}`}}}var _i,yi,wi,Ti,Ni,gi,Ei,bi,Ii,Si,Di,Ai,Oi,Vi,xi,Ci,Li,Fi,ki,Ri,$i,Ui,Pi,Bi,Mi,ji,Gi,qi,zi,Yi,Ji,Qi,Ki,Hi,Xi,Wi,Zi,en,pn,an,dn,tn,nn,on,rn,sn,ln,mn,un,cn,vn,hn,fn,_n,yn;!function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(_i||(_i={})),function(e){e.All="all",e.Columns="columns",e.Gallery="gallery"}(yi||(yi={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(wi||(wi={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.PortalUser="PORTAL_USER",e.ViewOnly="VIEW_ONLY"}(Ti||(Ti={})),function(e){e.Communication="communication",e.Description="description",e.Name="name"}(Ni||(Ni={})),function(e){e.Private="private",e.Public="public",e.Share="share"}(gi||(gi={})),function(e){e.Board="board",e.CustomObject="custom_object",e.Document="document",e.SubItemsBoard="sub_items_board"}(Ei||(Ei={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(bi||(bi={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(Ii||(Ii={})),function(e){e.Description="description",e.Title="title"}(Si||(Si={})),function(e){e.AutoNumber="auto_number",e.BoardRelation="board_relation",e.Button="button",e.Checkbox="checkbox",e.ColorPicker="color_picker",e.Country="country",e.CreationLog="creation_log",e.Date="date",e.Dependency="dependency",e.DirectDoc="direct_doc",e.Doc="doc",e.Dropdown="dropdown",e.Email="email",e.File="file",e.Formula="formula",e.Group="group",e.Hour="hour",e.Integration="integration",e.ItemAssignees="item_assignees",e.ItemId="item_id",e.LastUpdated="last_updated",e.Link="link",e.Location="location",e.LongText="long_text",e.Mirror="mirror",e.Name="name",e.Numbers="numbers",e.People="people",e.Person="person",e.Phone="phone",e.Progress="progress",e.Rating="rating",e.Status="status",e.Subtasks="subtasks",e.Tags="tags",e.Team="team",e.Text="text",e.TimeTracking="time_tracking",e.Timeline="timeline",e.Unsupported="unsupported",e.Vote="vote",e.Week="week",e.WorldClock="world_clock"}(Di||(Di={})),function(e){e.BrinkPink="BRINK_PINK",e.CelticBlue="CELTIC_BLUE",e.CornflowerBlue="CORNFLOWER_BLUE",e.DingyDungeon="DINGY_DUNGEON",e.GoGreen="GO_GREEN",e.Gray="GRAY",e.LightDeepPink="LIGHT_DEEP_PINK",e.LightHotPink="LIGHT_HOT_PINK",e.MayaBlue="MAYA_BLUE",e.MediumTurquoise="MEDIUM_TURQUOISE",e.ParadisePink="PARADISE_PINK",e.PhilippineGreen="PHILIPPINE_GREEN",e.PhilippineYellow="PHILIPPINE_YELLOW",e.SlateBlue="SLATE_BLUE",e.VividCerulean="VIVID_CERULEAN",e.YankeesBlue="YANKEES_BLUE",e.YellowGreen="YELLOW_GREEN",e.YellowOrange="YELLOW_ORANGE"}(Ai||(Ai={})),function(e){e.Ascending="ASCENDING",e.Camera="CAMERA",e.Conference="CONFERENCE",e.Flag="FLAG",e.Gift="GIFT",e.Headphones="HEADPHONES",e.Homekeys="HOMEKEYS",e.Location="LOCATION",e.Notebook="NOTEBOOK",e.Paperplane="PAPERPLANE",e.Plane="PLANE",e.Pliers="PLIERS",e.Tripod="TRIPOD",e.Twoflags="TWOFLAGS",e.Utencils="UTENCILS"}(Oi||(Oi={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(Vi||(Vi={})),function(e){e.Monthly="MONTHLY",e.Yearly="YEARLY"}(xi||(xi={})),function(e){e.BulletedList="bulleted_list",e.CheckList="check_list",e.Code="code",e.Divider="divider",e.Image="image",e.LargeTitle="large_title",e.Layout="layout",e.MediumTitle="medium_title",e.NormalText="normal_text",e.NoticeBox="notice_box",e.NumberedList="numbered_list",e.PageBreak="page_break",e.Quote="quote",e.SmallTitle="small_title",e.Table="table",e.Video="video"}(Ci||(Ci={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(Li||(Li={})),function(e){e.DuplicateBoardWithPulses="duplicate_board_with_pulses",e.DuplicateBoardWithPulsesAndUpdates="duplicate_board_with_pulses_and_updates",e.DuplicateBoardWithStructure="duplicate_board_with_structure"}(Fi||(Fi={})),function(e){e.Asset="asset",e.Box="box",e.Doc="doc",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(ki||(ki={})),function(e){e.Box="box",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(Ri||(Ri={})),function(e){e.Monday="monday",e.Sunday="sunday"}($i||($i={})),function(e){e.Aquamarine="AQUAMARINE",e.BrightBlue="BRIGHT_BLUE",e.BrightGreen="BRIGHT_GREEN",e.ChiliBlue="CHILI_BLUE",e.DarkOrange="DARK_ORANGE",e.DarkPurple="DARK_PURPLE",e.DarkRed="DARK_RED",e.DoneGreen="DONE_GREEN",e.Indigo="INDIGO",e.Lipstick="LIPSTICK",e.Null="NULL",e.Purple="PURPLE",e.SofiaPink="SOFIA_PINK",e.StuckRed="STUCK_RED",e.Sunset="SUNSET",e.WorkingOrange="WORKING_ORANGE"}(Ui||(Ui={})),function(e){e.Folder="FOLDER",e.Morebelow="MOREBELOW",e.Morebelowfilled="MOREBELOWFILLED",e.Null="NULL",e.Work="WORK"}(Pi||(Pi={})),function(e){e.FontWeightBold="FONT_WEIGHT_BOLD",e.FontWeightLight="FONT_WEIGHT_LIGHT",e.FontWeightNormal="FONT_WEIGHT_NORMAL",e.FontWeightVeryLight="FONT_WEIGHT_VERY_LIGHT",e.Null="NULL"}(Bi||(Bi={})),function(e){e.Color="color",e.Position="position",e.RelativePositionAfter="relative_position_after",e.RelativePositionBefore="relative_position_before",e.Title="title"}(Mi||(Mi={})),function(e){e.Error="ERROR"}(ji||(ji={})),function(e){e.Asc="asc",e.Desc="desc"}(Gi||(Gi={})),function(e){e.And="and",e.Or="or"}(qi||(qi={})),function(e){e.AnyOf="any_of",e.Between="between",e.ContainsTerms="contains_terms",e.ContainsText="contains_text",e.EndsWith="ends_with",e.GreaterThan="greater_than",e.GreaterThanOrEquals="greater_than_or_equals",e.IsEmpty="is_empty",e.IsNotEmpty="is_not_empty",e.LowerThan="lower_than",e.LowerThanOrEqual="lower_than_or_equal",e.NotAnyOf="not_any_of",e.NotContainsText="not_contains_text",e.StartsWith="starts_with",e.WithinTheLast="within_the_last",e.WithinTheNext="within_the_next"}(zi||(zi={})),function(e){e.Person="person",e.Team="team"}(Yi||(Yi={})),function(e){e.Active="active",e.Deleted="deleted",e.Inactive="inactive"}(Ji||(Ji={})),function(e){e.Dropdown="dropdown",e.Status="status"}(Qi||(Qi={})),function(e){e.Post="Post",e.Project="Project"}(Ki||(Ki={})),function(e){e.Left="left",e.Right="right"}(Hi||(Hi={})),function(e){e.AfterAt="after_at",e.BeforeAt="before_at"}(Xi||(Xi={})),function(e){e.Crm="crm",e.Dev="dev",e.Forms="forms",e.Knowledge="knowledge",e.Service="service",e.Whiteboard="whiteboard",e.WorkManagement="work_management",e.Workflows="workflows"}(Wi||(Wi={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(Zi||(Zi={})),function(e){e.Active="active",e.All="all",e.Archived="archived",e.Deleted="deleted"}(en||(en={})),function(e){e.AmericanGray="american_gray",e.Aquamarine="aquamarine",e.Berry="berry",e.Blackish="blackish",e.BrightBlue="bright_blue",e.BrightGreen="bright_green",e.Brown="brown",e.Bubble="bubble",e.ChiliBlue="chili_blue",e.Coffee="coffee",e.DarkBlue="dark_blue",e.DarkIndigo="dark_indigo",e.DarkOrange="dark_orange",e.DarkPurple="dark_purple",e.DarkRed="dark_red",e.DoneGreen="done_green",e.EggYolk="egg_yolk",e.Explosive="explosive",e.GrassGreen="grass_green",e.Indigo="indigo",e.Lavender="lavender",e.Lilac="lilac",e.Lipstick="lipstick",e.Navy="navy",e.Orchid="orchid",e.Peach="peach",e.Pecan="pecan",e.Purple="purple",e.River="river",e.Royal="royal",e.Saladish="saladish",e.Sky="sky",e.SofiaPink="sofia_pink",e.Steel="steel",e.StuckRed="stuck_red",e.Sunset="sunset",e.Tan="tan",e.Teal="teal",e.Winter="winter",e.WorkingOrange="working_orange"}(pn||(pn={})),function(e){e.Nominal="nominal",e.Percent="percent"}(an||(an={})),function(e){e.OneTime="one_time",e.Recurring="recurring"}(dn||(dn={})),function(e){e.Monthly="monthly",e.Yearly="yearly"}(tn||(tn={})),function(e){e.Active="active",e.Inactive="inactive"}(nn||(nn={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UpdateEmailDomainError="UPDATE_EMAIL_DOMAIN_ERROR",e.UserNotFound="USER_NOT_FOUND"}(on||(on={})),function(e){e.InvalidField="INVALID_FIELD"}(rn||(rn={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(sn||(sn={})),function(e){e.All="all",e.Guests="guests",e.NonGuests="non_guests",e.NonPending="non_pending"}(ln||(ln={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.PortalUser="PORTAL_USER",e.ViewOnly="VIEW_ONLY"}(mn||(mn={})),function(e){e.Current="current",e.Deprecated="deprecated",e.Dev="dev",e.Maintenance="maintenance",e.OldMaintenance="old__maintenance",e.OldPreviousMaintenance="old_previous_maintenance",e.PreviousMaintenance="previous_maintenance",e.ReleaseCandidate="release_candidate"}(un||(un={})),function(e){e.ChangeColumnValue="change_column_value",e.ChangeName="change_name",e.ChangeSpecificColumnValue="change_specific_column_value",e.ChangeStatusColumnValue="change_status_column_value",e.ChangeSubitemColumnValue="change_subitem_column_value",e.ChangeSubitemName="change_subitem_name",e.CreateColumn="create_column",e.CreateItem="create_item",e.CreateSubitem="create_subitem",e.CreateSubitemUpdate="create_subitem_update",e.CreateUpdate="create_update",e.DeleteUpdate="delete_update",e.EditUpdate="edit_update",e.ItemArchived="item_archived",e.ItemDeleted="item_deleted",e.ItemMovedToAnyGroup="item_moved_to_any_group",e.ItemMovedToSpecificGroup="item_moved_to_specific_group",e.ItemRestored="item_restored",e.MoveSubitem="move_subitem",e.SubitemArchived="subitem_archived",e.SubitemDeleted="subitem_deleted"}(cn||(cn={})),function(e){e.Closed="closed",e.Open="open"}(vn||(vn={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(hn||(hn={})),function(e){e.CreatedAt="created_at"}(fn||(fn={})),function(e){e.Query="QUERY",e.Mutation="MUTATION",e.Subscription="SUBSCRIPTION",e.Field="FIELD",e.FragmentDefinition="FRAGMENT_DEFINITION",e.FragmentSpread="FRAGMENT_SPREAD",e.InlineFragment="INLINE_FRAGMENT",e.VariableDefinition="VARIABLE_DEFINITION",e.Schema="SCHEMA",e.Scalar="SCALAR",e.Object="OBJECT",e.FieldDefinition="FIELD_DEFINITION",e.ArgumentDefinition="ARGUMENT_DEFINITION",e.Interface="INTERFACE",e.Union="UNION",e.Enum="ENUM",e.EnumValue="ENUM_VALUE",e.InputObject="INPUT_OBJECT",e.InputFieldDefinition="INPUT_FIELD_DEFINITION"}(_n||(_n={})),function(e){e.Scalar="SCALAR",e.Object="OBJECT",e.Interface="INTERFACE",e.Union="UNION",e.Enum="ENUM",e.InputObject="INPUT_OBJECT",e.List="LIST",e.NonNull="NON_NULL"}(yn||(yn={}));const wn={boardName:e.z.string().describe("The name of the board to create"),boardKind:e.z.nativeEnum(gi).default(gi.Public).describe("The kind of board to create"),boardDescription:e.z.string().optional().describe("The description of the board to create"),workspaceId:e.z.string().optional().describe("The ID of the workspace to create the board in")};class Tn extends h{constructor(){super(...arguments),this.name="create_board",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a monday.com board"}getInputSchema(){return wn}async execute(e){const p={boardName:e.boardName,boardKind:e.boardKind,boardDescription:e.boardDescription,workspaceId:e.workspaceId},a=await this.mondayApi.request(qt,p);return{content:`Board ${a.create_board?.id} successfully created`}}}const Nn={columnType:e.z.nativeEnum(Di).describe("The type of the column to be created"),columnTitle:e.z.string().describe("The title of the column to be created"),columnDescription:e.z.string().optional().describe("The description of the column to be created"),columnSettings:e.z.array(e.z.string()).optional().describe("The default values for the new column (relevant only for column type 'status' or 'dropdown') when possible make the values relevant to the user's request")},gn={boardId:e.z.number().describe("The id of the board to which the new column will be added"),...Nn};class En extends h{constructor(){super(...arguments),this.name="create_column",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new column in a monday.com board"}getInputSchema(){return this.context?.boardId?Nn:gn}async execute(e){const p=this.context?.boardId??e.boardId;let a;e.columnSettings&&e.columnType===Di.Status?a=JSON.stringify({labels:Object.fromEntries(e.columnSettings.map(((e,p)=>[String(p+1),e])))}):e.columnSettings&&e.columnType===Di.Dropdown&&(a=JSON.stringify({settings:{labels:e.columnSettings.map(((e,p)=>({id:p+1,name:e})))}}));const d={boardId:p.toString(),columnType:e.columnType,columnTitle:e.columnTitle,columnDescription:e.columnDescription,columnSettings:a},t=await this.mondayApi.request(zt,d);return{content:`Column ${t.create_column?.id} successfully created`}}}const bn={columnId:e.z.string().describe("The id of the column to be deleted")},In={boardId:e.z.number().describe("The id of the board to which the new column will be added"),...bn};class Sn extends h{constructor(){super(...arguments),this.name="delete_column",this.type=exports.ToolType.MUTATION}getDescription(){return"Delete a column from a monday.com board"}getInputSchema(){return this.context?.boardId?bn:In}async execute(e){const p={boardId:(this.context?.boardId??e.boardId).toString(),columnId:e.columnId},a=await this.mondayApi.request(Yt,p);return{content:`Column ${a.delete_column?.id} successfully deleted`}}}const Dn={query:e.z.string().describe("Custom GraphQL query/mutation. you need to provide the full query / mutation"),variables:e.z.string().describe("JSON string containing the variables for the GraphQL operation")};class An extends h{constructor(e,p){super(e,p),this.name="all_monday_api",this.type=exports.ToolType.ALL_API}getDescription(){return"Execute any Monday.com API operation by generating GraphQL queries and mutations dynamically"}getInputSchema(){return Dn}async loadSchema(e){if(An.schemaCache[e])return An.schemaCache[e];try{const p=await this.mondayApi.rawRequest(Qt),{data:a}=p,d=_d(a);return An.schemaCache[e]=d,d}catch(e){throw new Error(`Failed to load GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`)}}async validateOperation(e,p){var a;return fd(await this.loadSchema(p),new me(e,a).parseDocument()).map((e=>e.message))}async execute(e){const{query:p,variables:a}=e;try{let e={};try{e=JSON.parse(a)}catch(e){return{content:`Error parsing variables: ${e instanceof Error?e.message:"Unknown error"}`}}const d=this.mondayApi.apiVersion,t=await this.validateOperation(p,d);if(t.length>0)return{content:t.join(", ")};const i=await this.mondayApi.request(p,e);return{content:JSON.stringify(i)}}catch(e){const p=e instanceof Error?e.message:"Unknown error";if(e instanceof Error&&"response"in e){const p=e;if(p.response?.errors)return{content:p.response.errors.map((e=>e.message)).join(", ")}}return{content:p}}}}An.schemaCache={};const On={random_string:e.z.string().describe("Dummy parameter for no-parameter tools").optional()};class Vn extends h{constructor(){super(...arguments),this.name="get_graphql_schema",this.type=exports.ToolType.ALL_API}getDescription(){return"Fetch the Monday.com GraphQL schema structure including query and mutation definitions"}getInputSchema(){return On}async execute(){try{const e=await this.mondayApi.request(Jt),p=e.queryType?.fields?.map((e=>`- ${e.name}${e.description?`: ${e.description}`:""}`)).join("\n")||"No query fields found",a=e.mutationType?.fields?.map((e=>`- ${e.name}${e.description?`: ${e.description}`:""}`)).join("\n")||"No mutation fields found",d=e.__schema,t=d?.types?.filter((e=>e.name&&!e.name.startsWith("__"))).map((e=>`- ${e.name} (${e.kind||"unknown"})`)).join("\n")||"No types found";return{content:`\n## GraphQL Schema\n- Query Type: ${e.__schema?.queryType?.name}\n- Mutation Type: ${e.__schema?.mutationType?.name}\n\n## Query Fields\n${p}\n\n## Mutation Fields\n${a}\n\n## Available Types\n${t}\n\nTo get detailed information about a specific type, use the get_type_details tool with the type name.\nFor example: get_type_details(typeName: "Board") to see Board type details.\n`}}catch(e){return{content:`Error fetching GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`}}}}const xn={typeName:e.z.string().describe("The name of the GraphQL type to get details for")};class Cn extends h{constructor(){super(...arguments),this.name="get_type_details",this.type=exports.ToolType.ALL_API}getDescription(){return"Get detailed information about a specific GraphQL type from the Monday.com API schema"}getInputSchema(){return xn}async execute(e){try{if(!e.typeName)return{content:"Error: typeName is required. Please provide a valid GraphQL type name."};const a=(p=e.typeName,kt`
308
308
  query getTypeDetails {
309
309
  __type(name: "${p}") {
310
310
  name
@@ -392,5 +392,5 @@
392
392
  }
393
393
  }
394
394
  }
395
- `),d=await this.mondayApi.request(a);if(!d.__type)return{content:`Type '${e.typeName}' not found in the GraphQL schema. Please check the type name and try again.`};let t=`## Type: ${d.__type.name||"Unnamed"} ${e.typeName===d.__type.name?"":`(queried: ${e.typeName})`}\nKind: ${d.__type.kind}\n${d.__type.description?`Description: ${d.__type.description}`:""}\n\n`;return d.__type.fields&&d.__type.fields.length>0&&(t+="## Fields\n",d.__type.fields.forEach((e=>{const p=Rn(e.type);t+=`- ${e.name}: ${p}${e.description?` - ${e.description}`:""}\n`,e.args&&e.args.length>0&&(t+=" Arguments:\n",e.args.forEach((e=>{const p=Rn(e.type);t+=` - ${e.name}: ${p}${e.description?` - ${e.description}`:""}${e.defaultValue?` (default: ${e.defaultValue})`:""}\n`})))})),t+="\n"),d.__type.inputFields&&d.__type.inputFields.length>0&&(t+="## Input Fields\n",d.__type.inputFields.forEach((e=>{const p=Rn(e.type);t+=`- ${e.name}: ${p}${e.description?` - ${e.description}`:""}${e.defaultValue?` (default: ${e.defaultValue})`:""}\n`})),t+="\n"),d.__type.interfaces&&d.__type.interfaces.length>0&&(t+="## Implements\n",d.__type.interfaces.forEach((e=>{t+=`- ${e.name}\n`})),t+="\n"),d.__type.enumValues&&d.__type.enumValues.length>0&&(t+="## Enum Values\n",d.__type.enumValues.forEach((e=>{t+=`- ${e.name}${e.description?` - ${e.description}`:""}\n`})),t+="\n"),d.__type.possibleTypes&&d.__type.possibleTypes.length>0&&(t+="## Possible Types\n",d.__type.possibleTypes.forEach((e=>{t+=`- ${e.name}\n`}))),t+=`\n## Usage Examples\nIf this is a Query or Mutation field, you can use it in the all_monday_api tool.\n\nExample for query:\nall_monday_api(operation: "query", name: "getTypeData", variables: "{\\"typeName\\": \\"${d.__type.name}\\"}")\n\nExample for object field access:\nWhen querying objects that have this type, include these fields in your query.\n`,{content:t}}catch(e){const p=e instanceof Error?e.message:"Unknown error",a=p.includes("JSON");return{content:`Error fetching type details: ${p}${a?"\n\nThis could be because the type name is incorrect or the GraphQL query format is invalid. Please check the type name and try again.":""}`}}var p}}function Rn(e){return e?"NON_NULL"===e.kind?`${Rn(e.ofType)}!`:"LIST"===e.kind?`[${Rn(e.ofType)}]`:e.name||"unknown":"unknown"}const $n={color:e.z.nativeEnum(Ai).describe("The color of the custom activity"),icon_id:e.z.nativeEnum(Oi).describe("The icon ID of the custom activity"),name:e.z.string().describe("The name of the custom activity")};class Un extends h{constructor(){super(...arguments),this.name="create_custom_activity",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new custom activity in the E&A app"}getInputSchema(){return $n}async execute(e){const p={color:e.color,icon_id:e.icon_id,name:e.name};return await this.mondayApi.request(Kt,p),{content:`Custom activity '${e.name}' with color ${e.color} and icon ${e.icon_id} successfully created`}}}const Pn={item_id:e.z.number().describe("The ID of the item to create the new timeline item on"),custom_activity_id:e.z.string().describe("The ID of the custom activity for the timeline item"),title:e.z.string().describe("The title of the new timeline item"),summary:e.z.string().optional().describe("The summary of the new timeline item (max 255 characters)"),content:e.z.string().optional().describe("The content of the new timeline item"),timestamp:e.z.string().describe("The creation time of the new timeline item in ISO8601 format (e.g., 2024-06-06T18:00:30Z)"),start_timestamp:e.z.string().optional().describe("The start time of the timeline item in ISO8601 format"),end_timestamp:e.z.string().optional().describe("The end time of the timeline item in ISO8601 format"),location:e.z.string().optional().describe("The location to add to the new timeline item"),phone:e.z.string().optional().describe("The phone number to add to the new timeline item"),url:e.z.string().optional().describe("The URL to add to the new timeline item")};class Bn extends h{constructor(){super(...arguments),this.name="create_timeline_item",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new timeline item in the E&A app"}getInputSchema(){return Pn}async execute(e){const p={item_id:e.item_id.toString(),custom_activity_id:e.custom_activity_id,title:e.title,timestamp:e.timestamp,summary:e.summary,content:e.content,location:e.location,phone:e.phone,url:e.url};e.start_timestamp&&e.end_timestamp&&(p.time_range={start_timestamp:e.start_timestamp,end_timestamp:e.end_timestamp});const a=await this.mondayApi.request(Ht,p);return{content:`Timeline item '${e.title}' with ID ${a.create_timeline_item?.id} successfully created on item ${e.item_id}`}}}const Mn={};class jn extends h{constructor(){super(...arguments),this.name="fetch_custom_activity",this.type=exports.ToolType.QUERY}getDescription(){return"Get custom activities from the E&A app"}getInputSchema(){return Mn}async execute(e){const p=await this.mondayApi.request(Xt);if(!p.custom_activity||0===p.custom_activity.length)return{content:"No custom activities found"};const a=p.custom_activity.map((e=>({id:e.id,name:e.name,color:e.color,icon_id:e.icon_id,type:e.type})));return{content:`Found ${a.length} custom activities: ${JSON.stringify(a,null,2)}`}}}const Gn=[Zt,ai,ii,oi,si,mi,vi,fi,Tn,En,Sn,xn,Ln,kn,Un,Bn,jn];exports.AllMondayApiTool=xn,exports.ChangeItemColumnValuesTool=vi,exports.CreateBoardTool=Tn,exports.CreateColumnTool=En,exports.CreateCustomActivityTool=Un,exports.CreateItemTool=ii,exports.CreateTimelineItemTool=Bn,exports.CreateUpdateTool=oi,exports.DeleteColumnTool=Sn,exports.DeleteItemTool=Zt,exports.FetchCustomActivityTool=jn,exports.GetBoardItemsTool=ai,exports.GetBoardSchemaTool=si,exports.GetGraphQLSchemaTool=Ln,exports.GetTypeDetailsTool=kn,exports.GetUsersTool=mi,exports.MoveItemToGroupTool=fi,exports.allMondayApiToolSchema=Vn,exports.allTools=Gn,exports.changeItemColumnValuesInBoardToolSchema=ci,exports.changeItemColumnValuesToolSchema=ui,exports.createBoardToolSchema=wn,exports.createColumnInBoardToolSchema=gn,exports.createColumnToolSchema=Nn,exports.createCustomActivityToolSchema=$n,exports.createItemInBoardToolSchema=ti,exports.createItemToolSchema=di,exports.createTimelineItemToolSchema=Pn,exports.createUpdateToolSchema=ni,exports.deleteColumnInBoardToolSchema=In,exports.deleteColumnToolSchema=bn,exports.deleteItemToolSchema=Wt,exports.fetchCustomActivityToolSchema=Mn,exports.getBoardSchemaToolSchema=ri,exports.getGraphQLSchemaToolSchema=Cn,exports.getItemsInBoardToolSchema=pi,exports.getItemsToolSchema=ei,exports.getTypeDetailsToolSchema=Fn,exports.getUsersToolSchema=li,exports.moveItemToGroupToolSchema=hi;
395
+ `),d=await this.mondayApi.request(a);if(!d.__type)return{content:`Type '${e.typeName}' not found in the GraphQL schema. Please check the type name and try again.`};let t=`## Type: ${d.__type.name||"Unnamed"} ${e.typeName===d.__type.name?"":`(queried: ${e.typeName})`}\nKind: ${d.__type.kind}\n${d.__type.description?`Description: ${d.__type.description}`:""}\n\n`;return d.__type.fields&&d.__type.fields.length>0&&(t+="## Fields\n",d.__type.fields.forEach((e=>{const p=Ln(e.type);t+=`- ${e.name}: ${p}${e.description?` - ${e.description}`:""}\n`,e.args&&e.args.length>0&&(t+=" Arguments:\n",e.args.forEach((e=>{const p=Ln(e.type);t+=` - ${e.name}: ${p}${e.description?` - ${e.description}`:""}${e.defaultValue?` (default: ${e.defaultValue})`:""}\n`})))})),t+="\n"),d.__type.inputFields&&d.__type.inputFields.length>0&&(t+="## Input Fields\n",d.__type.inputFields.forEach((e=>{const p=Ln(e.type);t+=`- ${e.name}: ${p}${e.description?` - ${e.description}`:""}${e.defaultValue?` (default: ${e.defaultValue})`:""}\n`})),t+="\n"),d.__type.interfaces&&d.__type.interfaces.length>0&&(t+="## Implements\n",d.__type.interfaces.forEach((e=>{t+=`- ${e.name}\n`})),t+="\n"),d.__type.enumValues&&d.__type.enumValues.length>0&&(t+="## Enum Values\n",d.__type.enumValues.forEach((e=>{t+=`- ${e.name}${e.description?` - ${e.description}`:""}\n`})),t+="\n"),d.__type.possibleTypes&&d.__type.possibleTypes.length>0&&(t+="## Possible Types\n",d.__type.possibleTypes.forEach((e=>{t+=`- ${e.name}\n`}))),t+=`\n## Usage Examples\nIf this is a Query or Mutation field, you can use it in the all_monday_api tool.\n\nExample for query:\nall_monday_api(operation: "query", name: "getTypeData", variables: "{\\"typeName\\": \\"${d.__type.name}\\"}")\n\nExample for object field access:\nWhen querying objects that have this type, include these fields in your query.\n`,{content:t}}catch(e){const p=e instanceof Error?e.message:"Unknown error",a=p.includes("JSON");return{content:`Error fetching type details: ${p}${a?"\n\nThis could be because the type name is incorrect or the GraphQL query format is invalid. Please check the type name and try again.":""}`}}var p}}function Ln(e){return e?"NON_NULL"===e.kind?`${Ln(e.ofType)}!`:"LIST"===e.kind?`[${Ln(e.ofType)}]`:e.name||"unknown":"unknown"}const Fn={color:e.z.nativeEnum(Ai).describe("The color of the custom activity"),icon_id:e.z.nativeEnum(Oi).describe("The icon ID of the custom activity"),name:e.z.string().describe("The name of the custom activity")};class kn extends h{constructor(){super(...arguments),this.name="create_custom_activity",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new custom activity in the E&A app"}getInputSchema(){return Fn}async execute(e){const p={color:e.color,icon_id:e.icon_id,name:e.name};return await this.mondayApi.request(Kt,p),{content:`Custom activity '${e.name}' with color ${e.color} and icon ${e.icon_id} successfully created`}}}const Rn={item_id:e.z.number().describe("The ID of the item to create the new timeline item on"),custom_activity_id:e.z.string().describe("The ID of the custom activity for the timeline item"),title:e.z.string().describe("The title of the new timeline item"),summary:e.z.string().optional().describe("The summary of the new timeline item (max 255 characters)"),content:e.z.string().optional().describe("The content of the new timeline item"),timestamp:e.z.string().describe("The creation time of the new timeline item in ISO8601 format (e.g., 2024-06-06T18:00:30Z)"),start_timestamp:e.z.string().optional().describe("The start time of the timeline item in ISO8601 format"),end_timestamp:e.z.string().optional().describe("The end time of the timeline item in ISO8601 format"),location:e.z.string().optional().describe("The location to add to the new timeline item"),phone:e.z.string().optional().describe("The phone number to add to the new timeline item"),url:e.z.string().optional().describe("The URL to add to the new timeline item")};class $n extends h{constructor(){super(...arguments),this.name="create_timeline_item",this.type=exports.ToolType.MUTATION}getDescription(){return"Create a new timeline item in the E&A app"}getInputSchema(){return Rn}async execute(e){const p={item_id:e.item_id.toString(),custom_activity_id:e.custom_activity_id,title:e.title,timestamp:e.timestamp,summary:e.summary,content:e.content,location:e.location,phone:e.phone,url:e.url};e.start_timestamp&&e.end_timestamp&&(p.time_range={start_timestamp:e.start_timestamp,end_timestamp:e.end_timestamp});const a=await this.mondayApi.request(Ht,p);return{content:`Timeline item '${e.title}' with ID ${a.create_timeline_item?.id} successfully created on item ${e.item_id}`}}}const Un={};class Pn extends h{constructor(){super(...arguments),this.name="fetch_custom_activity",this.type=exports.ToolType.QUERY}getDescription(){return"Get custom activities from the E&A app"}getInputSchema(){return Un}async execute(e){const p=await this.mondayApi.request(Xt);if(!p.custom_activity||0===p.custom_activity.length)return{content:"No custom activities found"};const a=p.custom_activity.map((e=>({id:e.id,name:e.name,color:e.color,icon_id:e.icon_id,type:e.type})));return{content:`Found ${a.length} custom activities: ${JSON.stringify(a,null,2)}`}}}const Bn=[Zt,ai,ii,oi,si,mi,vi,fi,Tn,En,Sn,An,Vn,Cn,kn,$n,Pn];exports.AllMondayApiTool=An,exports.ChangeItemColumnValuesTool=vi,exports.CreateBoardTool=Tn,exports.CreateColumnTool=En,exports.CreateCustomActivityTool=kn,exports.CreateItemTool=ii,exports.CreateTimelineItemTool=$n,exports.CreateUpdateTool=oi,exports.DeleteColumnTool=Sn,exports.DeleteItemTool=Zt,exports.FetchCustomActivityTool=Pn,exports.GetBoardItemsTool=ai,exports.GetBoardSchemaTool=si,exports.GetGraphQLSchemaTool=Vn,exports.GetTypeDetailsTool=Cn,exports.GetUsersTool=mi,exports.MoveItemToGroupTool=fi,exports.allMondayApiToolSchema=Dn,exports.allTools=Bn,exports.changeItemColumnValuesInBoardToolSchema=ci,exports.changeItemColumnValuesToolSchema=ui,exports.createBoardToolSchema=wn,exports.createColumnInBoardToolSchema=gn,exports.createColumnToolSchema=Nn,exports.createCustomActivityToolSchema=Fn,exports.createItemInBoardToolSchema=ti,exports.createItemToolSchema=di,exports.createTimelineItemToolSchema=Rn,exports.createUpdateToolSchema=ni,exports.deleteColumnInBoardToolSchema=In,exports.deleteColumnToolSchema=bn,exports.deleteItemToolSchema=Wt,exports.fetchCustomActivityToolSchema=Un,exports.getBoardSchemaToolSchema=ri,exports.getGraphQLSchemaToolSchema=On,exports.getItemsInBoardToolSchema=pi,exports.getItemsToolSchema=ei,exports.getTypeDetailsToolSchema=xn,exports.getUsersToolSchema=li,exports.moveItemToGroupToolSchema=hi;
396
396
  //# sourceMappingURL=index.js.map