From 1a77fe76864f0e244c455a92fe9185c96419f01a Mon Sep 17 00:00:00 2001 From: Tami Takamiya Date: Wed, 8 May 2024 13:36:40 -0400 Subject: [PATCH] Make action/outlineId options required in PlaybookOutlineEvent --- src/interfaces/lightspeed.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interfaces/lightspeed.ts b/src/interfaces/lightspeed.ts index 55b510994..9429a69e3 100644 --- a/src/interfaces/lightspeed.ts +++ b/src/interfaces/lightspeed.ts @@ -72,8 +72,8 @@ export interface IssueFeedbackEvent { } export interface PlaybookOutlineEvent { - action?: ThumbsUpDownAction; - outlineId?: string; + action: ThumbsUpDownAction; + outlineId: string; } export interface FeedbackRequestParams {