ImportMergeStrategy: "replace" | "merge" | "skip-duplicates"

Merge strategy for importing match results

  • "replace": Overwrite all existing matches with imported data
  • "merge": Combine with existing matches, preserving non-pending statuses
  • "skip-duplicates": Only import new manga not in current results
export type ImportMergeStrategy = "replace" | "merge" | "skip-duplicates";