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 Dec 4, 2019
1 parent ae423c1 commit 69c7967
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 @@ -1493,6 +1493,25 @@ export namespace interfaces.audioplayer {
}
}

export namespace interfaces.audioplayer {
/**
*
* @interface
*/
export interface CaptionData {
'content'?: string;
'type'?: interfaces.audioplayer.CaptionType;
}
}

export namespace interfaces.audioplayer {
/**
*
* @enum
*/
export type CaptionType = 'WEBVTT';
}

export namespace interfaces.audioplayer {
/**
*
Expand Down Expand Up @@ -1558,6 +1577,7 @@ export namespace interfaces.audioplayer {
'token': string;
'url': string;
'offsetInMilliseconds': number;
'captionData'?: interfaces.audioplayer.CaptionData;
}
}

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.25.0",
"version": "1.25.1",
"description": "Model package for Alexa Skills Kit SDK",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 69c7967

Please sign in to comment.