Skip to content

Commit 69c7967

Browse files
committed
chore: release model
1 parent ae423c1 commit 69c7967

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

ask-sdk-model/index.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,6 +1493,25 @@ export namespace interfaces.audioplayer {
14931493
}
14941494
}
14951495

1496+
export namespace interfaces.audioplayer {
1497+
/**
1498+
*
1499+
* @interface
1500+
*/
1501+
export interface CaptionData {
1502+
'content'?: string;
1503+
'type'?: interfaces.audioplayer.CaptionType;
1504+
}
1505+
}
1506+
1507+
export namespace interfaces.audioplayer {
1508+
/**
1509+
*
1510+
* @enum
1511+
*/
1512+
export type CaptionType = 'WEBVTT';
1513+
}
1514+
14961515
export namespace interfaces.audioplayer {
14971516
/**
14981517
*
@@ -1558,6 +1577,7 @@ export namespace interfaces.audioplayer {
15581577
'token': string;
15591578
'url': string;
15601579
'offsetInMilliseconds': number;
1580+
'captionData'?: interfaces.audioplayer.CaptionData;
15611581
}
15621582
}
15631583

ask-sdk-model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ask-sdk-model",
3-
"version": "1.25.0",
3+
"version": "1.25.1",
44
"description": "Model package for Alexa Skills Kit SDK",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)