diff --git a/src/types/index.ts b/src/types/index.ts index e1671c9..780d0d6 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -73,7 +73,7 @@ export interface Review { reviewer_id: string | null; result: string[]; data: Record; - comment: string | null; + feedback: string | null; created_at: string; } @@ -136,7 +136,7 @@ export interface WebhookQueueData { export interface WebhookReviewData { result: string[]; data: Record; - comment: string | null; + feedback: string | null; reviewer: { name: string; type: string }; created_at: string; }