Variable EXPORT_TEMPLATESConst

EXPORT_TEMPLATES: {
    ALL: { name: string; description: string; filters: ExportFilterOptions };
    MATCHED_ONLY: {
        name: string;
        description: string;
        filters: ExportFilterOptions;
    };
    PENDING_ONLY: {
        name: string;
        description: string;
        filters: ExportFilterOptions;
    };
    UNMATCHED_ONLY: {
        name: string;
        description: string;
        filters: ExportFilterOptions;
    };
    HIGH_CONFIDENCE: {
        name: string;
        description: string;
        filters: ExportFilterOptions;
    };
} = ...

Predefined export templates/presets for common export scenarios

Type declaration

export const EXPORT_TEMPLATES = {
ALL: {
name: "All Matches",
description: "Export all match results without filters",
filters: {} as ExportFilterOptions,
},
MATCHED_ONLY: {
name: "Matched Only",
description: "Export only successfully matched entries",
filters: { statusFilter: ["matched", "manual"] } as ExportFilterOptions,
},
PENDING_ONLY: {
name: "Pending Only",
description: "Export only pending matches",
filters: { statusFilter: ["pending"] } as ExportFilterOptions,
},
UNMATCHED_ONLY: {
name: "Unmatched Only",
description: "Export only entries without matches",
filters: { unmatchedOnly: true } as ExportFilterOptions,
},
HIGH_CONFIDENCE: {
name: "High Confidence (>75%)",
description: "Export only high confidence matches",
filters: { confidenceThreshold: 75 } as ExportFilterOptions,
},
};