From 59bb1fa3b5b19601ff18f4322d9e993b665d2385 Mon Sep 17 00:00:00 2001 From: Sai Kiran Vadlamudi Date: Thu, 24 Aug 2017 18:07:24 -0400 Subject: [PATCH] confirmationStatus is optional Fix the removed ? at the end of confirmationStatus in SlotValue. --- types/alexa-sdk/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/alexa-sdk/index.d.ts b/types/alexa-sdk/index.d.ts index 7c0bf42f8e..1c39755b2d 100644 --- a/types/alexa-sdk/index.d.ts +++ b/types/alexa-sdk/index.d.ts @@ -122,7 +122,7 @@ export interface Resolutions { } export interface SlotValue { - confirmationStatus: ConfirmationStatuses; + confirmationStatus?: ConfirmationStatuses; name: string; value?: any; resolutions?: Resolutions;