-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathAds.ts
112 lines (105 loc) · 3.4 KB
/
Ads.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/**
* The type of ad source:
* <br/> - `'vast'`: The source is a VAST resource.
* <br/> - `'vmap'`: The source is a VMAP resource.
* <br/> - `'adrule'`: The source is a Ad Rule resource.
*
* @remarks
* <br/> - An ad rule is a simplified VMAP alternative only available in the Google IMA integration.
*
* @public
*/
export type AdSourceType = 'vast' | 'vmap' | 'adrule';
/**
* Describes the source of the ad.
*
* @public
*/
export interface AdSource {
/**
* The URL of the ad resource.
*/
src: string;
/**
* The type of ad resource.
*
* @defaultValue 'vmap' when set through {@link SourceConfiguration.ads} without a time offset, otherwise 'vast'.
*/
type?: AdSourceType;
}
/**
* Describes an ad break request.
*
* @public
*/
export interface AdDescription {
/**
* The integration of the ad break.
*
* @defaultValue `'csai'`
*/
integration?: AdIntegrationKind;
/**
* Whether the ad replaces playback of the content.
*
* @remarks
* <br/> - When the ad ends, the content will resume at the ad break's offset plus its duration.
*
* @defaultValue
* <br/> - `true` for live content,
* <br/> - `false` for VOD content
*/
replaceContent?: boolean;
/**
* A source which contains the location of ad resources to be scheduled.
*
* @remarks
* <br/> - Important: This should *not* be an array of sources.
* <br/> - VPAID support is limited to the `'google-ima'` integration.
* <br/> - Not specifying this property should only happen when using a third party ad integration that uses an other system of specifying which ads to schedule
*/
sources?: string | AdSource;
/**
* Offset after which the ad break will start.
*
* Possible formats:
* <br/> - A number for the offset in seconds.
* <br/> - `'start'` for a preroll.
* <br/> - `'end'` for a postroll.
* <br/> - `'HH:MM:SS.mmm'` for a timestamp in the playback window.
* <br/> - A percentage string (XX%) for a proportion of the content duration.
*
* @remarks
* <br/> - A timestamp which is not in the playback window will result in the ad break not being started.
* <br/> - VMAP resources will ignore this value as they contain an internal offset.
* <br/> - Since 2.18, numbers are supported for the Google IMA integration, since 2.21 other formats as well.
*
* @defaultValue `'start'`
*
*/
timeOffset?: string | number;
}
/**
* The integration of an ad break, represented by a value from the following list:
* <br/> - `'csai'`: Default CSAI ad playback.
* <br/> - `'theo'`: Old naming for `'csai'` - Default ad playback. (Deprecated)
* <br/> - `'google-ima'`: {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5|Google IMA}.
* <br/> - `'google-dai'`: {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5 | Google DAI}.
* <br/> - `'spotx'`: {@link https://developer.spotxchange.com/|SpotX} pre-integrated ad playback.
* <br/> - `'freewheel'`: {@link https://vi.freewheel.tv/|FreeWheel} pre-integrated ad playback.
* <br/> - `'theoads'`: [Experimental] - API under development, do not use without consulting THEO Technologies.
*
* @remarks
* <br/> - An empty string defaults to `'theo'`.
*
* @public
*/
export enum AdIntegrationKind {
freewheel = 'freewheel',
google_ima = 'google-ima',
google_dai = 'google-dai',
spotx = 'spotx',
csai = 'csai',
theo = 'theo',
theoads = 'theoads',
}