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 Apr 30, 2019
1 parent 0812e2e commit d6a266d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions ask-sdk-model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1560,9 +1560,28 @@ export namespace interfaces.viewport {
'currentPixelHeight'?: number;
'touch'?: Array<interfaces.viewport.Touch>;
'keyboard'?: Array<interfaces.viewport.Keyboard>;
'video'?: interfaces.viewport.ViewportStateVideo;
}
}

export namespace interfaces.viewport {
/**
* Details of the technologies which are available for playing video on the device.
* @interface
*/
export interface ViewportStateVideo {
'codecs'?: Array<interfaces.viewport.video.Codecs>;
}
}

export namespace interfaces.viewport.video {
/**
* A named bundle of codecs which are available for playing video on the viewport.
* @enum
*/
export type Codecs = 'H_264_41' | 'H_264_42';
}

export namespace services.deviceAddress {
/**
* Represents the full address response from the service.
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.15.0",
"version": "1.15.1",
"description": "Model package for Alexa Skills Kit SDK",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit d6a266d

Please sign in to comment.