Skip to content

Commit

Permalink
chore: release model
Browse files Browse the repository at this point in the history
  • Loading branch information
ask-sdk committed Sep 24, 2020
1 parent 0a0f8bc commit 8f4546f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions ask-sdk-model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ export interface Context {
'Geolocation'?: interfaces.geolocation.GeolocationState;
'Viewport'?: interfaces.viewport.ViewportState;
'Viewports'?: Array<interfaces.viewport.TypedViewportState>;
'Extensions'?: interfaces.alexa.extension.ExtensionsState;
}

/**
Expand Down Expand Up @@ -916,6 +917,25 @@ export namespace interfaces.alexa.comms.messagingcontroller {
}
}

export namespace interfaces.alexa.extension {
/**
* This object describes an extension that skill can request at runtime.
* @interface
*/
export interface AvailableExtension {
}
}

export namespace interfaces.alexa.extension {
/**
*
* @interface
*/
export interface ExtensionsState {
'available': { [key: string]: interfaces.alexa.extension.AvailableExtension; };
}
}

export namespace interfaces.alexa.presentation.apl {
/**
*
Expand Down
2 changes: 1 addition & 1 deletion ask-sdk-model/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ask-sdk-model",
"version": "1.32.0",
"version": "1.33.0",
"description": "Model package for Alexa Skills Kit SDK",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 8f4546f

Please sign in to comment.