@annoto/widget-api 2.10.0-alpha.1 → 3.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/dist/build/api/index.d.ts +40 -0
- package/dist/build/api/index.d.ts.map +1 -0
- package/dist/build/api/index.js +18 -0
- package/dist/build/api/index.js.map +1 -0
- package/dist/build/config/hooks.d.ts +87 -0
- package/dist/build/config/hooks.d.ts.map +1 -0
- package/dist/build/config/hooks.js +3 -0
- package/dist/build/config/hooks.js.map +1 -0
- package/dist/build/config/index.d.ts +88 -0
- package/dist/build/config/index.d.ts.map +1 -0
- package/dist/build/config/index.js +25 -0
- package/dist/build/config/index.js.map +1 -0
- package/dist/build/config/ux.d.ts +153 -0
- package/dist/build/config/ux.d.ts.map +1 -0
- package/dist/build/config/ux.js +3 -0
- package/dist/build/config/ux.js.map +1 -0
- package/dist/build/config/widget.d.ts +70 -0
- package/dist/build/config/widget.d.ts.map +1 -0
- package/dist/build/config/widget.js +3 -0
- package/dist/build/config/widget.js.map +1 -0
- package/dist/build/index.d.ts +22 -0
- package/dist/build/index.d.ts.map +1 -0
- package/dist/build/index.js +20 -0
- package/dist/build/index.js.map +1 -0
- package/dist/build/player-adapter/index.d.ts +291 -0
- package/dist/build/player-adapter/index.d.ts.map +1 -0
- package/dist/build/player-adapter/index.js +17 -0
- package/dist/build/player-adapter/index.js.map +1 -0
- package/dist/build_esm/config/hooks.d.ts +18 -2
- package/dist/build_esm/config/hooks.d.ts.map +1 -1
- package/dist/build_esm/config/ux.d.ts +4 -4
- package/dist/build_esm/config/ux.d.ts.map +1 -1
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module PlayerAdaptor
|
|
3
|
+
*/
|
|
4
|
+
import { IMediaDetails } from '../config';
|
|
5
|
+
import { IControlsDescriptor } from './controls-descriptor';
|
|
6
|
+
export declare type PlayerEventCallback = () => void;
|
|
7
|
+
export * from './controls-descriptor';
|
|
8
|
+
/**
|
|
9
|
+
* @description Annoto Player Adaptor API
|
|
10
|
+
*/
|
|
11
|
+
export interface IPlayerAdaptorApi {
|
|
12
|
+
/**
|
|
13
|
+
* @description This method is called by Annoto as the first method.
|
|
14
|
+
* Use it to configure the player interface object.
|
|
15
|
+
* If the method returns false, Annoto will retry a number of times with fixed
|
|
16
|
+
* period of time between the retries.
|
|
17
|
+
* This is useful if your player needs to load some resources, or wait for some condition.
|
|
18
|
+
* Notice: For Advanced use cases, the method can return a Promise. If a Promise is returned,
|
|
19
|
+
* No retries shall be performed. Annoto will wait for Promise resolve/reject.
|
|
20
|
+
*
|
|
21
|
+
* @param element - html DOM element of the player (as configured by Annoto API)
|
|
22
|
+
* @param params - player.params of API configuration
|
|
23
|
+
* @returns {boolean/Promise}
|
|
24
|
+
*/
|
|
25
|
+
init(element: Element, params?: any): boolean | Promise<boolean>;
|
|
26
|
+
/**
|
|
27
|
+
* @description (OPTIONAL) called by Annoto to release resources when the widget is closing.
|
|
28
|
+
* NOTICE: Although optional this method is highly recommended if you use Annoto API
|
|
29
|
+
* to dynamically load and close the widget.
|
|
30
|
+
* The adaptor implementation should discard the events that were regsitered using the onReady, onPlay, etc. when remove() is called.
|
|
31
|
+
*/
|
|
32
|
+
remove?(): void | Promise<void>;
|
|
33
|
+
/**
|
|
34
|
+
* @description Start playing the media
|
|
35
|
+
*/
|
|
36
|
+
play(): void | Promise<void>;
|
|
37
|
+
/**
|
|
38
|
+
* @description Pause the media
|
|
39
|
+
*/
|
|
40
|
+
pause(): void | Promise<void>;
|
|
41
|
+
/**
|
|
42
|
+
* @description Set the media current time of track (skip/seek to time of the track)
|
|
43
|
+
* @param time - in seconds
|
|
44
|
+
*/
|
|
45
|
+
setCurrentTime(time: number): void | Promise<void>;
|
|
46
|
+
/**
|
|
47
|
+
* @description (OPTIONAL) Return if the media is a live stream or a VOD.
|
|
48
|
+
* NOTE: if the method is not implemented VOD is assumed.
|
|
49
|
+
* @returns {boolean | Promise<boolean>}
|
|
50
|
+
*/
|
|
51
|
+
isLive?(): boolean | Promise<boolean>;
|
|
52
|
+
/**
|
|
53
|
+
* @description Get time of current playback position.
|
|
54
|
+
* @returns {Number | Promise<number>} - in seconds. Preferred Floating point precision.
|
|
55
|
+
*/
|
|
56
|
+
currentTime(): number | Promise<number>;
|
|
57
|
+
/**
|
|
58
|
+
* @description Get the total media track duration in seconds
|
|
59
|
+
* 0 or NaN or 'undefined' values may be returned until media is ready.
|
|
60
|
+
* Note: For live video for best experience return the latest known duration of the stream.
|
|
61
|
+
* (for DVR enabled live stream, it can defer from currentTime)
|
|
62
|
+
* @returns {Number | NaN | Promise<number>} - in seconds
|
|
63
|
+
*/
|
|
64
|
+
duration(): number | Promise<number>;
|
|
65
|
+
/**
|
|
66
|
+
* @description Get player playback state (playing or paused)
|
|
67
|
+
* @returns {boolean | Promise<boolean>} - true if pause, false if playing
|
|
68
|
+
*/
|
|
69
|
+
paused(): boolean | Promise<boolean>;
|
|
70
|
+
/**
|
|
71
|
+
* @description Get currently played media source. The returned value, identifies
|
|
72
|
+
* the current video and must be unique. It can be a full URL or an unique identifier.
|
|
73
|
+
* Notice: this value can be overriden by player.mediaSrc widget configuration.
|
|
74
|
+
* @returns {string | Promise<string>}
|
|
75
|
+
*/
|
|
76
|
+
mediaSrc(): string | Promise<string>;
|
|
77
|
+
/**
|
|
78
|
+
* @description (OPTIONAL) Get Details for the media.
|
|
79
|
+
* Notice: this value can be overriden by player.mediaDetails widget configuration.
|
|
80
|
+
* @return {IMediaDetails | Promise<IMediaDetails>}
|
|
81
|
+
*/
|
|
82
|
+
mediaMetadata?(): IMediaDetails | Promise<IMediaDetails>;
|
|
83
|
+
/**
|
|
84
|
+
* @description (OPTIONAL) Get player autoplay configuration option
|
|
85
|
+
* (if player configured to play on page load)
|
|
86
|
+
* @returns {boolean | Promise<boolean>}
|
|
87
|
+
*/
|
|
88
|
+
autoplay?(): boolean | Promise<boolean>;
|
|
89
|
+
/**
|
|
90
|
+
* @description (OPTIONAL) Get player full screen state.
|
|
91
|
+
* NOTE: if not supported the function must be undefined.
|
|
92
|
+
* Annoto will use other methods to detect full screen.
|
|
93
|
+
* @returns {boolean}
|
|
94
|
+
*/
|
|
95
|
+
fullScreen?(): boolean;
|
|
96
|
+
/**
|
|
97
|
+
* @description (OPTIONAL) By default Annoto will try applying a fix
|
|
98
|
+
* To enable Annoto to work when player enters Full screen. The fix is
|
|
99
|
+
* moving annoto-app container as a child of the player element or embeddableElement()
|
|
100
|
+
* annoto-app will be moved only if the player element allows it (is NOT an IFRAME).
|
|
101
|
+
* annoto-app will be moved when player enters full screen, and moved back to the original
|
|
102
|
+
* parent of annoto-app obtained at Annoto.boot() call.
|
|
103
|
+
* NOTE: In rare case when this must be disabled, return false from the function.
|
|
104
|
+
* @returns {boolean}
|
|
105
|
+
*/
|
|
106
|
+
fixFullScreen?(): boolean;
|
|
107
|
+
/**
|
|
108
|
+
* @description (OPTIONAL) Get player controls Element for embedding
|
|
109
|
+
* annoto timeline for overlay and full screen mode.
|
|
110
|
+
* NOTE: Although this method is optional it's highly recomended and will make the integration
|
|
111
|
+
* much simpler, imrove performance and provide better User experience.
|
|
112
|
+
* NOTE: if not supported the function must be undefined.
|
|
113
|
+
* @returns {Element}
|
|
114
|
+
*/
|
|
115
|
+
controlsElement?(): Element;
|
|
116
|
+
/**
|
|
117
|
+
* @description (OPTIONAL) Get player Element for embedding annoto application for full screen state.
|
|
118
|
+
* If not provided the main player Element would be used (the element provided at init()).
|
|
119
|
+
* NOTE: if not supported the function must be undefined.
|
|
120
|
+
* @returns {Element}
|
|
121
|
+
*/
|
|
122
|
+
embeddableElement?(): Element;
|
|
123
|
+
/**
|
|
124
|
+
* @description (OPTIONAL) Get player width in pixels.
|
|
125
|
+
* NOTE: if not supported the function must be undefined.
|
|
126
|
+
* Annoto will use other methods to detect width of the player.
|
|
127
|
+
* @returns {number | string} if string, may contain 'px'
|
|
128
|
+
*/
|
|
129
|
+
width?(): number | string;
|
|
130
|
+
/**
|
|
131
|
+
* @description (OPTIONAL) Get player height in pixels.
|
|
132
|
+
* NOTE: if not supported the function must be undefined.
|
|
133
|
+
* Annoto will use other methods to detect height of the player.
|
|
134
|
+
* @returns {number | string} if string, may contain 'px'
|
|
135
|
+
*/
|
|
136
|
+
height?(): number | string;
|
|
137
|
+
/**
|
|
138
|
+
* @description cb should be called when the player is setup and the media metadata is loaded.
|
|
139
|
+
* Note: This method MUST be called as the first event.
|
|
140
|
+
* If your player does not support this event, simulate it by calling the cb manually.
|
|
141
|
+
* @param cb{PlayerEventCallback}
|
|
142
|
+
*/
|
|
143
|
+
onReady(cb: PlayerEventCallback): void;
|
|
144
|
+
/**
|
|
145
|
+
* @description cb should be called when the media is played.
|
|
146
|
+
* @param cb{PlayerEventCallback}
|
|
147
|
+
*/
|
|
148
|
+
onPlay(cb: PlayerEventCallback): void;
|
|
149
|
+
/**
|
|
150
|
+
* @description cb should be called when the media is paused.
|
|
151
|
+
* @param cb{PlayerEventCallback}
|
|
152
|
+
*/
|
|
153
|
+
onPause(cb: PlayerEventCallback): void;
|
|
154
|
+
/**
|
|
155
|
+
* @description cb should be called when the media is seeked
|
|
156
|
+
* (playback position changes after seeking).
|
|
157
|
+
* @param cb{PlayerEventCallback}
|
|
158
|
+
*/
|
|
159
|
+
onSeek(cb: PlayerEventCallback): void;
|
|
160
|
+
/**
|
|
161
|
+
* @description cb should be called when the media playback current time is updated.
|
|
162
|
+
* Or when the media duration is changed.
|
|
163
|
+
* can be frequent. 200 msec is a good choice for period.
|
|
164
|
+
* @param cb{PlayerEventCallback}
|
|
165
|
+
*/
|
|
166
|
+
onTimeUpdate(cb: PlayerEventCallback): void;
|
|
167
|
+
/**
|
|
168
|
+
* @description cb should be called when the media source changes.
|
|
169
|
+
* @param cb{PlayerEventCallback}
|
|
170
|
+
*/
|
|
171
|
+
onMediaChange(cb: PlayerEventCallback): void;
|
|
172
|
+
/**
|
|
173
|
+
* @description (OPTIONAL) cb should be called when full screen state of the player changes.
|
|
174
|
+
* NOTE: if not supported the function must be undefined.
|
|
175
|
+
* Annoto will use other methods to detect full screen changes.
|
|
176
|
+
* @param cb{(isFullScreen?: boolean) => void} the callback may pass non mandatory new full screen state as boolean.
|
|
177
|
+
*/
|
|
178
|
+
onFullScreen?(cb: (isFullScreen?: boolean) => void): void;
|
|
179
|
+
/**
|
|
180
|
+
* @description (OPTIONAL) cb should be called when player size changes.
|
|
181
|
+
* NOTE: if not supported the function must be undefined.
|
|
182
|
+
* Annoto will use other methods to detect size change.
|
|
183
|
+
* @param cb{PlayerEventCallback}
|
|
184
|
+
*/
|
|
185
|
+
onSizeChange?(cb: PlayerEventCallback): void;
|
|
186
|
+
/**
|
|
187
|
+
* @description (OPTIONAL) cb should be called when
|
|
188
|
+
* the media element/player is taken off of a page.
|
|
189
|
+
* Useful for dynamic websites.
|
|
190
|
+
* @param cb{PlayerEventCallback}
|
|
191
|
+
*/
|
|
192
|
+
onRemove?(cb: PlayerEventCallback): void;
|
|
193
|
+
/**
|
|
194
|
+
* @description (OPTIONAL) Get player controls description parameters.
|
|
195
|
+
* The parameters describe behavior of the player controls.
|
|
196
|
+
* @returns {ControlsDescriptor} controls descriptor object
|
|
197
|
+
*/
|
|
198
|
+
controlsDescriptor?(): IControlsDescriptor;
|
|
199
|
+
/**
|
|
200
|
+
* @description (OPTIONAL) If defined will be called at view refreshes of the widget.
|
|
201
|
+
* Allows the player to perform optional adjustments to the controls descriptor.
|
|
202
|
+
* NOTE: may be called frequently, so no heavy operations should be performed.
|
|
203
|
+
* @param isPhone {boolean}
|
|
204
|
+
* @param isFullScreen {boolean}
|
|
205
|
+
*/
|
|
206
|
+
updateControlsDescriptor?(isPhone: boolean, isFullScreen: boolean): void;
|
|
207
|
+
/**
|
|
208
|
+
* @description (OPTIONAL) Get player controls hidden state.
|
|
209
|
+
* NOTE: if not supported the function must be undefined.
|
|
210
|
+
* Annoto will use other methods to detect controls state.
|
|
211
|
+
* @returns {boolean}
|
|
212
|
+
*/
|
|
213
|
+
controlsHidden?(): boolean;
|
|
214
|
+
/**
|
|
215
|
+
* @description (OPTIONAL) Get player controls height in pixels.
|
|
216
|
+
* If supported it will be used instead of controlsDescriptor values.
|
|
217
|
+
* NOTE: if not supported the function must be undefined.
|
|
218
|
+
* Annoto will use other methods to detect height of the player.
|
|
219
|
+
* @returns {number | string} if string, may contain 'px'
|
|
220
|
+
*/
|
|
221
|
+
controlsHeight?(): number | string;
|
|
222
|
+
/**
|
|
223
|
+
* @description (OPTIONAL) Get player controls track (progress bar) left margin in pixels.
|
|
224
|
+
* If supported it will be used instead of controlsDescriptor values.
|
|
225
|
+
* NOTE: if not supported the function must be undefined.
|
|
226
|
+
* Annoto will use other methods to detect height of the player.
|
|
227
|
+
* @returns {number | string} if string, may contain 'px'
|
|
228
|
+
*/
|
|
229
|
+
trackMarginLeft?(): number | string;
|
|
230
|
+
/**
|
|
231
|
+
* @description (OPTIONAL) Get player player controls track (progress bar) right margin in pixels.
|
|
232
|
+
* If supported it will be used instead of controlsDescriptor values.
|
|
233
|
+
* NOTE: if not supported the function must be undefined.
|
|
234
|
+
* Annoto will use other methods to detect height of the player.
|
|
235
|
+
* @returns {number | string} if string, may contain 'px'
|
|
236
|
+
*/
|
|
237
|
+
trackMarginRight?(): number | string;
|
|
238
|
+
/**
|
|
239
|
+
* @description (OPTIONAL) cb should be called when player controls are shown.
|
|
240
|
+
* If implemented the onControlsHide() method must be implemented as well.
|
|
241
|
+
* If implemented those events will be used instead of mouse tracking
|
|
242
|
+
* and controlsDescriptor.mouse parameters.
|
|
243
|
+
* NOTE: if not supported the function must be undefined.
|
|
244
|
+
* Annoto will use other methods to detect controls state.
|
|
245
|
+
* @param cb{function}
|
|
246
|
+
*/
|
|
247
|
+
onControlsShow?(cb: PlayerEventCallback): void;
|
|
248
|
+
/**
|
|
249
|
+
* @description (OPTIONAL) cb should be called when player controls are hidden.
|
|
250
|
+
* If implemented the onControlsShow() method must be implemented as well.
|
|
251
|
+
* If implemented those events will be used instead of mouse tracking
|
|
252
|
+
* and controlsDescriptor.mouse parameters.
|
|
253
|
+
* NOTE: if not supported the function must be undefined.
|
|
254
|
+
* Annoto will use other methods to detect controls state.
|
|
255
|
+
* @param cb{PlayerEventCallback}
|
|
256
|
+
*/
|
|
257
|
+
onControlsHide?(cb: PlayerEventCallback): void;
|
|
258
|
+
/**
|
|
259
|
+
* @description (OPTIONAL) Get the ration of width / height of the video frame itself.
|
|
260
|
+
* Note: the ratio shold be of the video frame, not of the player element (it can be differnt).
|
|
261
|
+
* Note: In most cases this method is not required. It is required only if the controls size
|
|
262
|
+
* depends on the video frame size and not on the player element size, for example this is the
|
|
263
|
+
* case in Vimeo player.
|
|
264
|
+
*/
|
|
265
|
+
videoRatio?(): number | null;
|
|
266
|
+
/**
|
|
267
|
+
* @description (DEPRECATED) cb should be called when mouse enters player controls.
|
|
268
|
+
* If implemented the onControlsLeave() method must be implemented as well.
|
|
269
|
+
* NOTE: In most cases this event is not required.
|
|
270
|
+
* NOTE: if not supported the function must be undefined.
|
|
271
|
+
* If defined the main usage of this event is to hide Annoto Timeline when user hovers
|
|
272
|
+
* mouse over the players controls, for example for players where Annoto Timeline interfers with
|
|
273
|
+
* some hover functionality of the player. The function is required only for Iframe players for
|
|
274
|
+
* other players Annoto can detect the event by itself.
|
|
275
|
+
* @param cb{PlayerEventCallback}
|
|
276
|
+
*/
|
|
277
|
+
onControlsEnter?(cb: PlayerEventCallback): void;
|
|
278
|
+
/**
|
|
279
|
+
* @description (DEPRECATED) cb should be called when mouse leaves player controls.
|
|
280
|
+
* If implemented the onControlsEnter() method must be implemented as well.
|
|
281
|
+
* NOTE: In most cases this event is not required.
|
|
282
|
+
* NOTE: if not supported the function must be undefined.
|
|
283
|
+
* If defined the main usage of this event is to hide Annoto Timeline when user hovers
|
|
284
|
+
* mouse over the players controls, for example for players where Annoto Timeline interfers with
|
|
285
|
+
* some hover functionality of the player. The function is required only for Iframe players for
|
|
286
|
+
* other players Annoto can detect the event by itself.
|
|
287
|
+
* @param cb{PlayerEventCallback}
|
|
288
|
+
*/
|
|
289
|
+
onControlsLeave?(cb: PlayerEventCallback): void;
|
|
290
|
+
}
|
|
291
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/player-adapter/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,oBAAY,mBAAmB,GAAG,MAAM,IAAI,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AAEtC;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;;;;;;;;;OAYG;IACH,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,CAAC,EAAE,GAAG,GAAG,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAEjE;;;;;OAKG;IACH,MAAM,CAAC,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEhC;;OAEG;IACH,IAAI,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7B;;OAEG;IACH,KAAK,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9B;;;OAGG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnD;;;;OAIG;IACH,MAAM,CAAC,IAAI,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAEtC;;;OAGG;IACH,WAAW,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAExC;;;;;;OAMG;IACH,QAAQ,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAErC;;;OAGG;IACH,MAAM,IAAI,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAErC;;;;;OAKG;IACH,QAAQ,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAErC;;;;OAIG;IACH,aAAa,CAAC,IAAI,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IAEzD;;;;OAIG;IACH,QAAQ,CAAC,IAAI,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAExC;;;;;OAKG;IACH,UAAU,CAAC,IAAI,OAAO,CAAC;IAEvB;;;;;;;;;OASG;IACH,aAAa,CAAC,IAAI,OAAO,CAAC;IAE1B;;;;;;;OAOG;IACH,eAAe,CAAC,IAAI,OAAO,CAAC;IAE5B;;;;;OAKG;IACH,iBAAiB,CAAC,IAAI,OAAO,CAAC;IAC9B;;;;;OAKG;IACH,KAAK,CAAC,IAAI,MAAM,GAAG,MAAM,CAAC;IAE1B;;;;;OAKG;IACH,MAAM,CAAC,IAAI,MAAM,GAAG,MAAM,CAAC;IAQ3B;;;;;OAKG;IACH,OAAO,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAEvC;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAEtC;;;OAGG;IACH,OAAO,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAEvC;;;;OAIG;IACH,MAAM,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAEtC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAE5C;;;OAGG;IACH,aAAa,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAE7C;;;;;OAKG;IACH,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,KAAK,IAAI,GAAG,IAAI,CAAC;IAE1D;;;;;OAKG;IACH,YAAY,CAAC,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAE7C;;;;;OAKG;IACH,QAAQ,CAAC,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAQzC;;;;OAIG;IACH,kBAAkB,CAAC,IAAI,mBAAmB,CAAC;IAE3C;;;;;;OAMG;IACH,wBAAwB,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,GAAG,IAAI,CAAC;IAEzE;;;;;OAKG;IACH,cAAc,CAAC,IAAI,OAAO,CAAC;IAE3B;;;;;;OAMG;IACH,cAAc,CAAC,IAAI,MAAM,GAAG,MAAM,CAAC;IAEnC;;;;;;OAMG;IACH,eAAe,CAAC,IAAI,MAAM,GAAG,MAAM,CAAC;IAEpC;;;;;;OAMG;IACH,gBAAgB,CAAC,IAAI,MAAM,GAAG,MAAM,CAAC;IAErC;;;;;;;;OAQG;IACH,cAAc,CAAC,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAE/C;;;;;;;;OAQG;IACH,cAAc,CAAC,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAE/C;;;;;;OAMG;IACH,UAAU,CAAC,IAAI,MAAM,GAAG,IAAI,CAAC;IAI7B;;;;;;;;;;OAUG;IACH,eAAe,CAAC,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAEhD;;;;;;;;;;OAUG;IACH,eAAe,CAAC,CAAC,EAAE,EAAE,mBAAmB,GAAG,IAAI,CAAC;CACnD"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module PlayerAdaptor
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
8
|
+
}) : (function(o, m, k, k2) {
|
|
9
|
+
if (k2 === undefined) k2 = k;
|
|
10
|
+
o[k2] = m[k];
|
|
11
|
+
}));
|
|
12
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
13
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
14
|
+
};
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
__exportStar(require("./controls-descriptor"), exports);
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/player-adapter/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;AAMH,wDAAsC"}
|
|
@@ -1,8 +1,24 @@
|
|
|
1
|
+
import { IConfig } from '.';
|
|
1
2
|
import { IMediaDetails } from './media-details';
|
|
2
3
|
/**
|
|
3
4
|
* Callback hooks for triggering actions such as auth and getting info
|
|
4
5
|
*/
|
|
5
6
|
export interface IHooks {
|
|
7
|
+
/**
|
|
8
|
+
* Callback that allows to modify the configuration
|
|
9
|
+
* This callback is called when media is ready and it's preferences is loaded from the backend
|
|
10
|
+
* @remarks
|
|
11
|
+
* This is the prefered way of modifying the configuration.
|
|
12
|
+
* The best practice is to keep the widget bootstrap configuration to a minimum.
|
|
13
|
+
*
|
|
14
|
+
* @param params
|
|
15
|
+
* @returns the modified configuration to use instead of the provided config in params
|
|
16
|
+
*/
|
|
17
|
+
setup?(params: {
|
|
18
|
+
widgetIndex: number;
|
|
19
|
+
config: IConfig;
|
|
20
|
+
mediaSrc: string;
|
|
21
|
+
}): Promise<IConfig | undefined>;
|
|
6
22
|
/**
|
|
7
23
|
* Callback that allows to enrich details about the played media.
|
|
8
24
|
* If provided the function is called by the widget to obtain additional details about the media.
|
|
@@ -18,13 +34,13 @@ export interface IHooks {
|
|
|
18
34
|
* For SSO enabled integrations only.
|
|
19
35
|
* If Provided, Will be called when user triggers Authentication.
|
|
20
36
|
* If not provided a message in the form is shown.
|
|
21
|
-
* @returns
|
|
37
|
+
* @returns If possible the promise should reslove/reject when the auth flow is finished.
|
|
22
38
|
*/
|
|
23
39
|
ssoAuthRequestHandle?(): Promise<void> | void;
|
|
24
40
|
/**
|
|
25
41
|
* For SSO enabled integrations only.
|
|
26
42
|
* If Provided, Will be called when user triggers Logout action and "Logout" option will appear in the drawer menu.
|
|
27
|
-
* @returns
|
|
43
|
+
* @returns If possible the promise should reslove/reject when the logout flow is finished.
|
|
28
44
|
*/
|
|
29
45
|
logoutRequestHandle?(): Promise<void> | void;
|
|
30
46
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../lib/config/hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD;;GAEG;AACH,MAAM,WAAW,MAAM;IACnB;;;;;OAKG;IACH,YAAY,CAAC,CAAC,MAAM,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,aAAa,CAAC;KAAE,GAAG,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IACnI;;;;;OAKG;IACH,oBAAoB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,mBAAmB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;OAIG;IACH,UAAU,CAAC,IAAI,MAAM,CAAC;IACtB;;;;;OAKG;IACH,mBAAmB,CAAC,CAAC,MAAM,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;KAAE,GAAG,MAAM,CAAC;IACtG;;;;OAIG;IACH,wBAAwB,CAAC,CAAC,MAAM,EAAE,4BAA4B,GAAG,OAAO,CAAC,4BAA4B,CAAC,GAAG,4BAA4B,CAAC;CACzI;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;CACzB;AACD;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../lib/config/hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,GAAG,CAAC;AAC5B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD;;GAEG;AACH,MAAM,WAAW,MAAM;IACnB;;;;;;;;;OASG;IACH,KAAK,CAAC,CAAC,MAAM,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;KAAE,GAAG,OAAO,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC1G;;;;;OAKG;IACH,YAAY,CAAC,CAAC,MAAM,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,aAAa,CAAC;KAAE,GAAG,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IACnI;;;;;OAKG;IACH,oBAAoB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,mBAAmB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;OAIG;IACH,UAAU,CAAC,IAAI,MAAM,CAAC;IACtB;;;;;OAKG;IACH,mBAAmB,CAAC,CAAC,MAAM,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;KAAE,GAAG,MAAM,CAAC;IACtG;;;;OAIG;IACH,wBAAwB,CAAC,CAAC,MAAM,EAAE,4BAA4B,GAAG,OAAO,CAAC,4BAA4B,CAAC,GAAG,4BAA4B,CAAC;CACzI;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;CACzB;AACD;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -70,14 +70,14 @@ export interface ISidePanelUx {
|
|
|
70
70
|
fullScreenEnable?: boolean;
|
|
71
71
|
/**
|
|
72
72
|
* Width of the side panel in player fullscreen in pixels
|
|
73
|
-
* @default
|
|
73
|
+
* @default 400
|
|
74
74
|
*/
|
|
75
75
|
fullScreenWidth?: number;
|
|
76
76
|
/**
|
|
77
77
|
* Width of the overlay side panel
|
|
78
|
-
* @default
|
|
78
|
+
* @default 350
|
|
79
79
|
*/
|
|
80
|
-
|
|
80
|
+
width?: number;
|
|
81
81
|
}
|
|
82
82
|
export interface ICommentsUx {
|
|
83
83
|
/**
|
|
@@ -146,7 +146,7 @@ export interface IPlayerPlayTriggers {
|
|
|
146
146
|
note?: boolean;
|
|
147
147
|
}
|
|
148
148
|
export declare type ThemeType = 'default' | 'dark';
|
|
149
|
-
export declare type WidgetPositionType = 'right' | 'top
|
|
149
|
+
export declare type WidgetPositionType = 'right' | 'right:top' | 'right:bottom' | 'left' | 'left:top' | 'left:bottom';
|
|
150
150
|
export declare type WidgetLayoutType = 'edge' | 'overlay' | 'fixed' | 'sidePanel' | 'sidePanelOverlay';
|
|
151
151
|
export declare type WidgetLoadStateType = 'kuku' | 'open' | 'closed';
|
|
152
152
|
export declare type CommentsSortType = 'most_recent' | 'top_rated' | 'by_timetag';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ux.d.ts","sourceRoot":"","sources":["../../../lib/config/ux.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,GAAG;IAChB;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,QAAQ,CAAC,EAAE,WAAW,CAAC;CAC1B;AAED,MAAM,WAAW,SAAS;IACtB;;;OAGG;IACH,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,mBAAmB,CAAC;IAChC;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;IACzB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,WAAW,YAAY;IACzB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,
|
|
1
|
+
{"version":3,"file":"ux.d.ts","sourceRoot":"","sources":["../../../lib/config/ux.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,GAAG;IAChB;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,QAAQ,CAAC,EAAE,WAAW,CAAC;CAC1B;AAED,MAAM,WAAW,SAAS;IACtB;;;OAGG;IACH,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,mBAAmB,CAAC;IAChC;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;IACzB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,WAAW,YAAY;IACzB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,WAAW;IACxB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;CAC3B;AAED,MAAM,WAAW,SAAS;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,oBAAoB,CAAC;IACrC;;;OAGG;IACH,YAAY,CAAC,EAAE,mBAAmB,CAAC;CACtC;AAED,MAAM,WAAW,oBAAoB;IACjC;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;;OAKG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,WAAW,mBAAmB;IAChC;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,oBAAY,SAAS,GAAG,SAAS,GAAG,MAAM,CAAC;AAC3C,oBAAY,kBAAkB,GAAG,OAAO,GAAG,WAAW,GAAG,cAAc,GAAG,MAAM,GAAG,UAAU,GAAG,aAAa,CAAC;AAC9G,oBAAY,gBAAgB,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,kBAAkB,CAAC;AAC/F,oBAAY,mBAAmB,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;AAC7D,oBAAY,gBAAgB,GAAG,aAAa,GAAG,WAAW,GAAG,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../lib/config/backend.ts","../lib/config/features.ts","../lib/config/group-details.ts","../lib/config/media-details.ts","../lib/config/hooks.ts","../lib/config/launch-source.ts","../lib/config/ux.ts","../lib/player-adapter/controls-descriptor.ts","../lib/player-adapter/index.ts","../lib/config/timeline.ts","../lib/config/widget.ts","../lib/config/index.ts","../lib/events/stats-event.ts","../lib/events/ux-event.ts","../lib/events/video-benchmark-event.ts","../lib/events/my-activity.ts","../lib/events/index.ts","../lib/api/metadata.ts","../lib/api/device-detector.ts","../lib/api/index.ts","../lib/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/eslint-visitor-keys/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"c82e1abe92f42cb7cbbf0ed2db384cc742c6ba2aa3cbf1898bae7d67f192a66e","156f2fa13651e57641e30d09ae52e00e1c068822075ac2a83088cdba8b8ba9e2","27bfdcff6c04be2d33cb1842cb40129185b85b7162daade53e0adf94418ff6af","b27aeab8d91c469dd0ca7fed61ae472311cd37a30abc0c4b93301086fe1c2ae1","77aa406267834f95fb4602e1608b8a65529c0b0c08c79bbc97b4d86356ddf682","981ba33c6ff98ff4c7a4d660107bb49be10f6451e3c8fb0887e24dc58ee85d40","2c417842da2de8206d529262ae9f38358c0a57a48edb809a15845521f5420c23","2973f84dac948889fcf028afe93fe0bacf60e9b3ec80af17821069ef38616a99","b570b37ecbea5b65afdeb7f75fc60c9dbef0962a306d6bf5ee5a98c67a158a86","953e37c7017ed022256ebdea713659fa0f3d740331220e4c1249ef4606f778ad","f854509ad41ab18869c0443306df4c25790e56db712279c1d44332656884d3f3","ffa54bd45b3a80b1c66868e76024aa4893b64d447f1cab392b5d5fb50f9a4e4a","a8b98647277d601f98c5b4a8f6d46a6b514649b6657fdf4a90dbeda58f590f73","b910fc46d6978ed0a5ab4efff83e33ed24fb38390a5f86bd5db304cea6f866da","6efd55d6a4f758b6c77e379f3595acdfcf6d23f2e66672b70cc24af92b41c16e","9d2978ccc534e4e43a605338c05f0372726f00c0f5d6b8e01ca5cb7b8cc9277b","dbf5d3dc455f16f195de76aeff8e8d29f056f9fb5b87f6ca2eb116be655582de","f1d71eecd3cd7f601a9a5cc8961a1e3535e5bfe9365a4c5260f614949a95c41f","bf166e063b23948c4550381381afc4a66c222beb309533e516cde72dd07668e1","74fd15374bed0d5e4e9a6209fc118335aeff7c8897d23b96e7f62b2ac48b1983","50f5c83d3f4b693b645d13817f4a8c2568f2ae43891795399234e199d555d7d4","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","55cb77e6ff3d95a68568446f53d3f1dc8fca753575d7c60471a865685f08dcc3","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"61dd09b57a0a5cf1486c3ceb3a18ad23babfe602c323035ce3d01544c5e3e0b6","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","352104835f5c468c7d8a277f2c8c02fac239a37cd2293181fe421faa153878d3","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","a4aa075328fe61190b8547e74fae18179591a67fedb2ad274c63044a00716743","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","ae68a04912ee5a0f589276f9ec60b095f8c40d48128a4575b3fdd7d93806931c","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","49daf80661034e07d919f1c716aef69324e34d18a63a282f8100f52c961b58a7","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":99,"noImplicitAny":true,"noStrictGenericChecks":true,"outDir":"./build_esm","removeComments":false,"rootDir":"../lib","skipLibCheck":true,"sourceMap":true,"strict":false,"suppressImplicitAnyIndexErrors":true,"target":1},"fileIdsList":[[53],[53,54,55,56,57],[53,55],[71,105,106],[72,105],[109],[110],[116,118],[121,123,124,125,126,127,128,129,130,131,132,133],[121,122,124,125,126,127,128,129,130,131,132,133],[122,123,124,125,126,127,128,129,130,131,132,133],[121,122,123,125,126,127,128,129,130,131,132,133],[121,122,123,124,126,127,128,129,130,131,132,133],[121,122,123,124,125,127,128,129,130,131,132,133],[121,122,123,124,125,126,128,129,130,131,132,133],[121,122,123,124,125,126,127,129,130,131,132,133],[121,122,123,124,125,126,127,128,130,131,132,133],[121,122,123,124,125,126,127,128,129,131,132,133],[121,122,123,124,125,126,127,128,129,130,132,133],[121,122,123,124,125,126,127,128,129,130,131,133],[121,122,123,124,125,126,127,128,129,130,131,132],[102,103],[71,72,79,88],[63,71,79],[95],[67,72,80],[88],[69,71,79],[71],[71,73,88,94],[72],[79,88,94],[71,72,74,79,88,91,94],[74,88,91,94],[104],[94],[69,71,88],[61],[93],[86,95,97],[79],[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],[85],[71,73,88,94,97],[139],[112,113],[112,113,114,115],[117],[43,49,50],[35],[32,33,34,35,36,37,38,41,42],[33,38,40,41],[44,45,46,47],[46],[40,43,48,51],[39,43]],"referencedMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[107,4],[108,5],[110,6],[111,7],[119,8],[122,9],[123,10],[121,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[104,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[70,29],[71,29],[72,30],[73,31],[74,32],[75,33],[76,34],[105,35],[77,29],[78,36],[79,37],[82,38],[83,39],[86,29],[87,40],[88,29],[91,41],[102,42],[93,41],[94,43],[96,27],[98,44],[99,27],[140,45],[114,46],[116,47],[115,46],[118,48],[51,49],[36,50],[43,51],[42,52],[48,53],[47,54],[52,55],[40,56]],"exportedModulesMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[107,4],[108,5],[110,6],[111,7],[119,8],[122,9],[123,10],[121,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[104,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[70,29],[71,29],[72,30],[73,31],[74,32],[75,33],[76,34],[105,35],[77,29],[78,36],[79,37],[82,38],[83,39],[86,29],[87,40],[88,29],[91,41],[102,42],[93,41],[94,43],[96,27],[98,44],[99,27],[140,45],[114,46],[116,47],[115,46],[118,48],[51,49],[36,50],[43,51],[42,52],[48,53],[47,54],[52,55],[40,56]],"semanticDiagnosticsPerFile":[55,53,58,54,56,57,59,107,108,109,110,111,119,120,122,123,121,124,125,126,127,128,129,130,131,132,133,106,134,103,61,104,62,63,64,65,66,67,68,69,70,71,72,73,60,100,74,75,76,105,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,102,93,94,95,96,97,101,98,99,135,136,137,138,139,140,112,114,116,115,113,118,117,1,7,11,10,3,12,13,14,15,16,17,18,19,4,5,23,20,21,22,24,25,26,6,27,28,29,30,2,31,9,8,50,51,49,32,33,34,36,43,37,35,41,38,42,48,47,44,45,46,52,39,40]},"version":"4.4.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../lib/config/backend.ts","../lib/config/features.ts","../lib/config/group-details.ts","../lib/config/media-details.ts","../lib/config/hooks.ts","../lib/config/launch-source.ts","../lib/config/ux.ts","../lib/player-adapter/controls-descriptor.ts","../lib/player-adapter/index.ts","../lib/config/timeline.ts","../lib/config/widget.ts","../lib/config/index.ts","../lib/events/stats-event.ts","../lib/events/ux-event.ts","../lib/events/video-benchmark-event.ts","../lib/events/my-activity.ts","../lib/events/index.ts","../lib/api/metadata.ts","../lib/api/device-detector.ts","../lib/api/index.ts","../lib/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/eslint-visitor-keys/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"c82e1abe92f42cb7cbbf0ed2db384cc742c6ba2aa3cbf1898bae7d67f192a66e","156f2fa13651e57641e30d09ae52e00e1c068822075ac2a83088cdba8b8ba9e2","27bfdcff6c04be2d33cb1842cb40129185b85b7162daade53e0adf94418ff6af","b27aeab8d91c469dd0ca7fed61ae472311cd37a30abc0c4b93301086fe1c2ae1",{"version":"4444684505b7eb869b6e6aba0a2bfd0af4d6eb5d931cea52581e94a253b82b88","signature":"d1a080e99087be68d541d8a7066295239cab1f6c2e56f4bb32c3187b5de98e51"},"981ba33c6ff98ff4c7a4d660107bb49be10f6451e3c8fb0887e24dc58ee85d40",{"version":"2acf3b22cb763f83c59f286012b2058d706848515f762f58bce05b30c8d86f4f","signature":"dd191ffd71157747880ce8613bc8c6d1ef4f2ba0076812bfaaffa3995c705f25"},"2973f84dac948889fcf028afe93fe0bacf60e9b3ec80af17821069ef38616a99","b570b37ecbea5b65afdeb7f75fc60c9dbef0962a306d6bf5ee5a98c67a158a86","953e37c7017ed022256ebdea713659fa0f3d740331220e4c1249ef4606f778ad","f854509ad41ab18869c0443306df4c25790e56db712279c1d44332656884d3f3",{"version":"ffa54bd45b3a80b1c66868e76024aa4893b64d447f1cab392b5d5fb50f9a4e4a","signature":"7e4bd7cdfab761169ce379dc4ad22f45745602ec1b559fc4c10a07b021d93795"},"a8b98647277d601f98c5b4a8f6d46a6b514649b6657fdf4a90dbeda58f590f73","b910fc46d6978ed0a5ab4efff83e33ed24fb38390a5f86bd5db304cea6f866da","6efd55d6a4f758b6c77e379f3595acdfcf6d23f2e66672b70cc24af92b41c16e","9d2978ccc534e4e43a605338c05f0372726f00c0f5d6b8e01ca5cb7b8cc9277b","dbf5d3dc455f16f195de76aeff8e8d29f056f9fb5b87f6ca2eb116be655582de","f1d71eecd3cd7f601a9a5cc8961a1e3535e5bfe9365a4c5260f614949a95c41f","bf166e063b23948c4550381381afc4a66c222beb309533e516cde72dd07668e1","74fd15374bed0d5e4e9a6209fc118335aeff7c8897d23b96e7f62b2ac48b1983","50f5c83d3f4b693b645d13817f4a8c2568f2ae43891795399234e199d555d7d4","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","55cb77e6ff3d95a68568446f53d3f1dc8fca753575d7c60471a865685f08dcc3","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"61dd09b57a0a5cf1486c3ceb3a18ad23babfe602c323035ce3d01544c5e3e0b6","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","352104835f5c468c7d8a277f2c8c02fac239a37cd2293181fe421faa153878d3","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","a4aa075328fe61190b8547e74fae18179591a67fedb2ad274c63044a00716743","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","ae68a04912ee5a0f589276f9ec60b095f8c40d48128a4575b3fdd7d93806931c","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","49daf80661034e07d919f1c716aef69324e34d18a63a282f8100f52c961b58a7","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":99,"noImplicitAny":true,"noStrictGenericChecks":true,"outDir":"./build_esm","removeComments":false,"rootDir":"../lib","skipLibCheck":true,"sourceMap":true,"strict":false,"suppressImplicitAnyIndexErrors":true,"target":1},"fileIdsList":[[53],[53,54,55,56,57],[53,55],[71,105,106],[72,105],[109],[110],[116,118],[121,123,124,125,126,127,128,129,130,131,132,133],[121,122,124,125,126,127,128,129,130,131,132,133],[122,123,124,125,126,127,128,129,130,131,132,133],[121,122,123,125,126,127,128,129,130,131,132,133],[121,122,123,124,126,127,128,129,130,131,132,133],[121,122,123,124,125,127,128,129,130,131,132,133],[121,122,123,124,125,126,128,129,130,131,132,133],[121,122,123,124,125,126,127,129,130,131,132,133],[121,122,123,124,125,126,127,128,130,131,132,133],[121,122,123,124,125,126,127,128,129,131,132,133],[121,122,123,124,125,126,127,128,129,130,132,133],[121,122,123,124,125,126,127,128,129,130,131,133],[121,122,123,124,125,126,127,128,129,130,131,132],[102,103],[71,72,79,88],[63,71,79],[95],[67,72,80],[88],[69,71,79],[71],[71,73,88,94],[72],[79,88,94],[71,72,74,79,88,91,94],[74,88,91,94],[104],[94],[69,71,88],[61],[93],[86,95,97],[79],[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],[85],[71,73,88,94,97],[139],[112,113],[112,113,114,115],[117],[43,49,50],[35,43],[32,33,34,35,36,37,38,41,42],[33,38,40,41],[44,45,46,47],[46],[40,43,48,51],[39,43]],"referencedMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[107,4],[108,5],[110,6],[111,7],[119,8],[122,9],[123,10],[121,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[104,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[70,29],[71,29],[72,30],[73,31],[74,32],[75,33],[76,34],[105,35],[77,29],[78,36],[79,37],[82,38],[83,39],[86,29],[87,40],[88,29],[91,41],[102,42],[93,41],[94,43],[96,27],[98,44],[99,27],[140,45],[114,46],[116,47],[115,46],[118,48],[51,49],[36,50],[43,51],[42,52],[48,53],[47,54],[52,55],[40,56]],"exportedModulesMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[107,4],[108,5],[110,6],[111,7],[119,8],[122,9],[123,10],[121,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[104,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[70,29],[71,29],[72,30],[73,31],[74,32],[75,33],[76,34],[105,35],[77,29],[78,36],[79,37],[82,38],[83,39],[86,29],[87,40],[88,29],[91,41],[102,42],[93,41],[94,43],[96,27],[98,44],[99,27],[140,45],[114,46],[116,47],[115,46],[118,48],[51,49],[36,50],[43,51],[42,52],[48,53],[47,54],[52,55],[40,56]],"semanticDiagnosticsPerFile":[55,53,58,54,56,57,59,107,108,109,110,111,119,120,122,123,121,124,125,126,127,128,129,130,131,132,133,106,134,103,61,104,62,63,64,65,66,67,68,69,70,71,72,73,60,100,74,75,76,105,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,102,93,94,95,96,97,101,98,99,135,136,137,138,139,140,112,114,116,115,113,118,117,1,7,11,10,3,12,13,14,15,16,17,18,19,4,5,23,20,21,22,24,25,26,6,27,28,29,30,2,31,9,8,50,51,49,32,33,34,36,43,37,35,41,38,42,48,47,44,45,46,52,39,40]},"version":"4.4.4"}
|