Create one or more issues using human-readable payloads.
retry
option without recreating successful rows.Single object, array of objects, or ParseInputOptions.
Optional options: IssuesCreateOptionsOptional flags for dry-run validation and manifest retry.
The created Issue for single rows or a BulkResult.
Search for issues using human-readable field names and values.
Search criteria with human-readable field names.
Array of matching issues.
const issues = await jml.issues.search({
project: "Engineering",
assignee: "John Smith",
status: "In Progress",
"Risk Level": "High",
labels: ["backend", "urgent"],
createdSince: "2025-02-12"
});
Thin interface describing the public surface exposed as
jml.issues. This keeps the docs focused on what consumers can call without surfacing every internal helper on IssueOperations.