Optional ambiguityPer-call ambiguity policy override. Merges with instance-level config, with per-call taking precedence.
{ user: 'error' }
Optional fuzzyPer-call fuzzy matching override. Merges with instance-level config, with per-call taking precedence.
{ user: { enabled: true, threshold: 0.3 } }
Optional onProgress tracking callback for bulk operations. Receives progress updates during long-running bulk operations.
await jml.issues.create(rows, {
onProgress: (progress) => {
console.log(`${progress.completed}/${progress.total} issues created`);
}
});
Optional retryResume a previous manifest run by ID. When provided, only failed rows are retried and merged into the original manifest.
Optional validateRun converters + validation without calling JIRA. Returns the converted payload with DRY-RUN markers.
Options supported by
jml.issues.create.