/**
 * WooCommerce product ID lookup.
 *
 * These are the three Sigma tax-software products available on the Store API.
 * The numeric IDs are stable as long as the products are not deleted and
 * re-created; they were read from `/wc/store/v1/products` during integration.
 */
export const PRODUCT_SLUG_TO_ID: Record<string, number> = {
  "sigma-1040-sr": 17418,
  "sigma-1040-tw": 14287,
  "sigma-1040-dr": 14276,
};

export const PRODUCT_CODE_TO_ID: Record<string, number> = {
  "1040-SR": 17418,
  "1040-TW": 14287,
  "1040-DR": 14276,
};
