chore: expand incentive task type enum to include new tasks

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-02-09 18:20:57 -08:00
parent 63ca97a08e
commit 0caba8de50

View file

@ -3,7 +3,7 @@ import { z } from "zod";
/** /**
* Incentive task type enum - matches backend IncentiveTaskType * Incentive task type enum - matches backend IncentiveTaskType
*/ */
export const incentiveTaskTypeEnum = z.enum(["GITHUB_STAR"]); export const incentiveTaskTypeEnum = z.enum(["GITHUB_STAR", "REDDIT_FOLLOW", "DISCORD_JOIN"]);
/** /**
* Single incentive task info schema * Single incentive task info schema