import type { AccountThresholdConfig } from "../src/types.js"; /** * Account threshold configurations for automatic labeling * * This file contains example values. Copy to accountThreshold.ts and configure with your thresholds. */ export const ACCOUNT_THRESHOLD_CONFIGS: AccountThresholdConfig[] = [ // Example configuration: // { // labels: ["example-label"], // threshold: 3, // accountLabel: "repeat-offender", // accountComment: "Account exceeded threshold", // window: 5, // windowUnit: "hours", // reportAcct: false, // commentAcct: false, // toLabel: true, // }, ];