diff --git a/types/alexa-sdk/index.d.ts b/types/alexa-sdk/index.d.ts index 983c2fa063..1c39755b2d 100644 --- a/types/alexa-sdk/index.d.ts +++ b/types/alexa-sdk/index.d.ts @@ -98,10 +98,34 @@ export interface Request { locale?: string; } +export interface ResolutionStatus { + code: string; +} + +export interface ResolutionValue { + name: string; + id: string; +} + +export interface ResolutionValueContainer { + value: ResolutionValue; +} + +export interface Resolution { + authority: string; + status: ResolutionStatus; + values: ResolutionValueContainer[]; +} + +export interface Resolutions { + resolutionsPerAuthority: Resolution[]; +} + export interface SlotValue { confirmationStatus?: ConfirmationStatuses; name: string; value?: any; + resolutions?: Resolutions; } export interface Intent {