Files
sim/apps/sim/tools/linear/index.ts
Adam Gough 6b28742b68 fix(linear): missing params (#2740)
* added missing params

* fixed linear bugs
2026-01-08 20:42:09 -08:00

160 lines
8.1 KiB
TypeScript

import { linearAddLabelToIssueTool } from '@/tools/linear/add_label_to_issue'
import { linearAddLabelToProjectTool } from '@/tools/linear/add_label_to_project'
import { linearArchiveIssueTool } from '@/tools/linear/archive_issue'
import { linearArchiveLabelTool } from '@/tools/linear/archive_label'
import { linearArchiveProjectTool } from '@/tools/linear/archive_project'
import { linearCreateAttachmentTool } from '@/tools/linear/create_attachment'
import { linearCreateCommentTool } from '@/tools/linear/create_comment'
import { linearCreateCustomerTool } from '@/tools/linear/create_customer'
import { linearCreateCustomerRequestTool } from '@/tools/linear/create_customer_request'
import { linearCreateCustomerStatusTool } from '@/tools/linear/create_customer_status'
import { linearCreateCustomerTierTool } from '@/tools/linear/create_customer_tier'
import { linearCreateCycleTool } from '@/tools/linear/create_cycle'
import { linearCreateFavoriteTool } from '@/tools/linear/create_favorite'
import { linearCreateIssueTool } from '@/tools/linear/create_issue'
import { linearCreateIssueRelationTool } from '@/tools/linear/create_issue_relation'
import { linearCreateLabelTool } from '@/tools/linear/create_label'
import { linearCreateProjectTool } from '@/tools/linear/create_project'
import { linearCreateProjectLabelTool } from '@/tools/linear/create_project_label'
import { linearCreateProjectMilestoneTool } from '@/tools/linear/create_project_milestone'
import { linearCreateProjectStatusTool } from '@/tools/linear/create_project_status'
import { linearCreateProjectUpdateTool } from '@/tools/linear/create_project_update'
import { linearCreateWorkflowStateTool } from '@/tools/linear/create_workflow_state'
import { linearDeleteAttachmentTool } from '@/tools/linear/delete_attachment'
import { linearDeleteCommentTool } from '@/tools/linear/delete_comment'
import { linearDeleteCustomerTool } from '@/tools/linear/delete_customer'
import { linearDeleteCustomerStatusTool } from '@/tools/linear/delete_customer_status'
import { linearDeleteCustomerTierTool } from '@/tools/linear/delete_customer_tier'
import { linearDeleteIssueTool } from '@/tools/linear/delete_issue'
import { linearDeleteIssueRelationTool } from '@/tools/linear/delete_issue_relation'
import { linearDeleteProjectTool } from '@/tools/linear/delete_project'
import { linearDeleteProjectLabelTool } from '@/tools/linear/delete_project_label'
import { linearDeleteProjectMilestoneTool } from '@/tools/linear/delete_project_milestone'
import { linearDeleteProjectStatusTool } from '@/tools/linear/delete_project_status'
import { linearGetActiveCycleTool } from '@/tools/linear/get_active_cycle'
import { linearGetCustomerTool } from '@/tools/linear/get_customer'
import { linearGetCycleTool } from '@/tools/linear/get_cycle'
import { linearGetIssueTool } from '@/tools/linear/get_issue'
import { linearGetProjectTool } from '@/tools/linear/get_project'
import { linearGetViewerTool } from '@/tools/linear/get_viewer'
import { linearListAttachmentsTool } from '@/tools/linear/list_attachments'
import { linearListCommentsTool } from '@/tools/linear/list_comments'
import { linearListCustomerRequestsTool } from '@/tools/linear/list_customer_requests'
import { linearListCustomerStatusesTool } from '@/tools/linear/list_customer_statuses'
import { linearListCustomerTiersTool } from '@/tools/linear/list_customer_tiers'
import { linearListCustomersTool } from '@/tools/linear/list_customers'
import { linearListCyclesTool } from '@/tools/linear/list_cycles'
import { linearListFavoritesTool } from '@/tools/linear/list_favorites'
import { linearListIssueRelationsTool } from '@/tools/linear/list_issue_relations'
import { linearListLabelsTool } from '@/tools/linear/list_labels'
import { linearListNotificationsTool } from '@/tools/linear/list_notifications'
import { linearListProjectLabelsTool } from '@/tools/linear/list_project_labels'
import { linearListProjectMilestonesTool } from '@/tools/linear/list_project_milestones'
import { linearListProjectStatusesTool } from '@/tools/linear/list_project_statuses'
import { linearListProjectUpdatesTool } from '@/tools/linear/list_project_updates'
import { linearListProjectsTool } from '@/tools/linear/list_projects'
import { linearListTeamsTool } from '@/tools/linear/list_teams'
import { linearListUsersTool } from '@/tools/linear/list_users'
import { linearListWorkflowStatesTool } from '@/tools/linear/list_workflow_states'
import { linearMergeCustomersTool } from '@/tools/linear/merge_customers'
import { linearReadIssuesTool } from '@/tools/linear/read_issues'
import { linearRemoveLabelFromIssueTool } from '@/tools/linear/remove_label_from_issue'
import { linearRemoveLabelFromProjectTool } from '@/tools/linear/remove_label_from_project'
import { linearSearchIssuesTool } from '@/tools/linear/search_issues'
import { linearUnarchiveIssueTool } from '@/tools/linear/unarchive_issue'
import { linearUpdateAttachmentTool } from '@/tools/linear/update_attachment'
import { linearUpdateCommentTool } from '@/tools/linear/update_comment'
import { linearUpdateCustomerTool } from '@/tools/linear/update_customer'
import { linearUpdateCustomerRequestTool } from '@/tools/linear/update_customer_request'
import { linearUpdateCustomerStatusTool } from '@/tools/linear/update_customer_status'
import { linearUpdateCustomerTierTool } from '@/tools/linear/update_customer_tier'
import { linearUpdateIssueTool } from '@/tools/linear/update_issue'
import { linearUpdateLabelTool } from '@/tools/linear/update_label'
import { linearUpdateNotificationTool } from '@/tools/linear/update_notification'
import { linearUpdateProjectTool } from '@/tools/linear/update_project'
import { linearUpdateProjectLabelTool } from '@/tools/linear/update_project_label'
import { linearUpdateProjectMilestoneTool } from '@/tools/linear/update_project_milestone'
import { linearUpdateProjectStatusTool } from '@/tools/linear/update_project_status'
import { linearUpdateWorkflowStateTool } from '@/tools/linear/update_workflow_state'
export {
linearReadIssuesTool,
linearCreateIssueTool,
linearGetIssueTool,
linearUpdateIssueTool,
linearArchiveIssueTool,
linearUnarchiveIssueTool,
linearDeleteIssueTool,
linearAddLabelToIssueTool,
linearRemoveLabelFromIssueTool,
linearSearchIssuesTool,
linearCreateCommentTool,
linearUpdateCommentTool,
linearDeleteCommentTool,
linearListCommentsTool,
linearListProjectsTool,
linearGetProjectTool,
linearCreateProjectTool,
linearUpdateProjectTool,
linearArchiveProjectTool,
linearDeleteProjectTool,
linearAddLabelToProjectTool,
linearRemoveLabelFromProjectTool,
linearListProjectLabelsTool,
linearCreateProjectLabelTool,
linearDeleteProjectLabelTool,
linearUpdateProjectLabelTool,
linearListProjectMilestonesTool,
linearCreateProjectMilestoneTool,
linearDeleteProjectMilestoneTool,
linearUpdateProjectMilestoneTool,
linearListProjectStatusesTool,
linearCreateProjectStatusTool,
linearDeleteProjectStatusTool,
linearUpdateProjectStatusTool,
linearListUsersTool,
linearListTeamsTool,
linearGetViewerTool,
linearListLabelsTool,
linearCreateLabelTool,
linearUpdateLabelTool,
linearArchiveLabelTool,
linearListWorkflowStatesTool,
linearCreateWorkflowStateTool,
linearUpdateWorkflowStateTool,
linearListCyclesTool,
linearGetCycleTool,
linearCreateCycleTool,
linearGetActiveCycleTool,
linearCreateAttachmentTool,
linearListAttachmentsTool,
linearUpdateAttachmentTool,
linearDeleteAttachmentTool,
linearCreateIssueRelationTool,
linearListIssueRelationsTool,
linearDeleteIssueRelationTool,
linearCreateFavoriteTool,
linearListFavoritesTool,
linearCreateProjectUpdateTool,
linearListProjectUpdatesTool,
linearListNotificationsTool,
linearUpdateNotificationTool,
linearCreateCustomerTool,
linearGetCustomerTool,
linearUpdateCustomerTool,
linearDeleteCustomerTool,
linearListCustomersTool,
linearMergeCustomersTool,
linearListCustomerStatusesTool,
linearCreateCustomerStatusTool,
linearDeleteCustomerStatusTool,
linearUpdateCustomerStatusTool,
linearListCustomerTiersTool,
linearCreateCustomerTierTool,
linearDeleteCustomerTierTool,
linearUpdateCustomerTierTool,
linearCreateCustomerRequestTool,
linearUpdateCustomerRequestTool,
linearListCustomerRequestsTool,
}