Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/jira

src/list-projects.js

11 lines · 354 B · JavaScript
import { listProjects } from './jira.js'

/**
 * Search Jira Cloud projects the caller can browse.
 * @example
 * import listProjects from 'kody:@kody/jira/list-projects'
 * const result = await listProjects({ query: 'platform', maxResults: 20 })
 */
export default async function listProjectsEntrypoint(input = {}) {
	return await listProjects(input)
}