@annoto/widget-api 3.0.0-alpha.2 → 3.0.0-alpha.6
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 +16 -0
- package/dist/build/api/device-detector.d.ts +12 -0
- package/dist/build/api/device-detector.d.ts.map +1 -0
- package/dist/build/api/device-detector.js +3 -0
- package/dist/build/api/device-detector.js.map +1 -0
- package/dist/build/api/index.d.ts +11 -1
- package/dist/build/api/index.d.ts.map +1 -1
- package/dist/build/api/metadata.d.ts +45 -0
- package/dist/build/api/metadata.d.ts.map +1 -0
- package/dist/build/api/metadata.js +3 -0
- package/dist/build/api/metadata.js.map +1 -0
- package/dist/build/config/backend.d.ts +11 -0
- package/dist/build/config/backend.d.ts.map +1 -0
- package/dist/build/config/backend.js +3 -0
- package/dist/build/config/backend.js.map +1 -0
- package/dist/build/config/features.d.ts +46 -0
- package/dist/build/config/features.d.ts.map +1 -0
- package/dist/build/config/features.js +3 -0
- package/dist/build/config/features.js.map +1 -0
- package/dist/build/config/group-details.d.ts +28 -0
- package/dist/build/config/group-details.d.ts.map +1 -0
- package/dist/build/config/group-details.js +3 -0
- package/dist/build/config/group-details.js.map +1 -0
- package/dist/build/config/launch-source.d.ts +10 -0
- package/dist/build/config/launch-source.d.ts.map +1 -0
- package/dist/build/config/launch-source.js +3 -0
- package/dist/build/config/launch-source.js.map +1 -0
- package/dist/build/config/media-details.d.ts +28 -0
- package/dist/build/config/media-details.d.ts.map +1 -0
- package/dist/build/config/media-details.js +3 -0
- package/dist/build/config/media-details.js.map +1 -0
- package/dist/build/config/timeline.d.ts +30 -0
- package/dist/build/config/timeline.d.ts.map +1 -0
- package/dist/build/config/timeline.js +3 -0
- package/dist/build/config/timeline.js.map +1 -0
- package/dist/build/config/ux.d.ts +2 -2
- package/dist/build/events/index.d.ts +8 -0
- package/dist/build/events/index.d.ts.map +1 -0
- package/dist/build/events/index.js +20 -0
- package/dist/build/events/index.js.map +1 -0
- package/dist/build/events/my-activity.d.ts +48 -0
- package/dist/build/events/my-activity.d.ts.map +1 -0
- package/dist/build/events/my-activity.js +3 -0
- package/dist/build/events/my-activity.js.map +1 -0
- package/dist/build/events/stats-event.d.ts +54 -0
- package/dist/build/events/stats-event.d.ts.map +1 -0
- package/dist/build/events/stats-event.js +28 -0
- package/dist/build/events/stats-event.js.map +1 -0
- package/dist/build/events/ux-event.d.ts +5 -0
- package/dist/build/events/ux-event.d.ts.map +1 -0
- package/dist/build/events/ux-event.js +3 -0
- package/dist/build/events/ux-event.js.map +1 -0
- package/dist/build/events/video-benchmark-event.d.ts +70 -0
- package/dist/build/events/video-benchmark-event.d.ts.map +1 -0
- package/dist/build/events/video-benchmark-event.js +3 -0
- package/dist/build/events/video-benchmark-event.js.map +1 -0
- package/dist/build/player-adapter/controls-descriptor.d.ts +174 -0
- package/dist/build/player-adapter/controls-descriptor.d.ts.map +1 -0
- package/dist/build/player-adapter/controls-descriptor.js +7 -0
- package/dist/build/player-adapter/controls-descriptor.js.map +1 -0
- package/dist/build_esm/api/index.d.ts +11 -1
- package/dist/build_esm/api/index.d.ts.map +1 -1
- package/dist/build_esm/config/ux.d.ts +2 -2
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Each video divided into segments based on viewer watch pattern
|
|
3
|
+
* x timestamp in seconds of the segment end, y is view intencity.
|
|
4
|
+
* single full segment view is y = 1.
|
|
5
|
+
*/
|
|
6
|
+
export interface IVideoBenchmarkHeatmap {
|
|
7
|
+
series: {
|
|
8
|
+
x: number;
|
|
9
|
+
y: number;
|
|
10
|
+
}[];
|
|
11
|
+
}
|
|
12
|
+
export interface IVideoBenchmarkEvent {
|
|
13
|
+
/**
|
|
14
|
+
* The group Id provided on {@link MediaDetails}
|
|
15
|
+
*/
|
|
16
|
+
group_id?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Media source
|
|
19
|
+
*/
|
|
20
|
+
media_src: string;
|
|
21
|
+
/**
|
|
22
|
+
* index of the widget
|
|
23
|
+
*/
|
|
24
|
+
widget_index: number;
|
|
25
|
+
/**
|
|
26
|
+
* Video duration
|
|
27
|
+
*/
|
|
28
|
+
duration: number;
|
|
29
|
+
/**
|
|
30
|
+
* Start of watched video segment in seconds
|
|
31
|
+
*/
|
|
32
|
+
segment_start: number;
|
|
33
|
+
/**
|
|
34
|
+
* End of watched video segment in seconds
|
|
35
|
+
*/
|
|
36
|
+
segment_end: number;
|
|
37
|
+
/**
|
|
38
|
+
* 0 - 100 percentage per session
|
|
39
|
+
*/
|
|
40
|
+
completion: number;
|
|
41
|
+
/**
|
|
42
|
+
* watch time in seconds per session
|
|
43
|
+
*/
|
|
44
|
+
watch_time: number;
|
|
45
|
+
/**
|
|
46
|
+
* View heatmap for the session
|
|
47
|
+
*/
|
|
48
|
+
heatmap?: IVideoBenchmarkHeatmap;
|
|
49
|
+
/**
|
|
50
|
+
* all time accumulated 0 - 100 percentage
|
|
51
|
+
*/
|
|
52
|
+
acc_completion: number;
|
|
53
|
+
/**
|
|
54
|
+
* all time accumulated watch time in seconds
|
|
55
|
+
*/
|
|
56
|
+
acc_watch_time: number;
|
|
57
|
+
/**
|
|
58
|
+
* all time accumalted heatmap
|
|
59
|
+
*/
|
|
60
|
+
acc_heatmap?: IVideoBenchmarkHeatmap;
|
|
61
|
+
/**
|
|
62
|
+
* Unique visitor identifier
|
|
63
|
+
*/
|
|
64
|
+
visitor_id: string;
|
|
65
|
+
/**
|
|
66
|
+
* Unique session identifier
|
|
67
|
+
*/
|
|
68
|
+
session_id: string;
|
|
69
|
+
}
|
|
70
|
+
//# sourceMappingURL=video-benchmark-event.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"video-benchmark-event.d.ts","sourceRoot":"","sources":["../../../lib/events/video-benchmark-event.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC,MAAM,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CACtC;AAGD,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,sBAAsB,CAAC;IACjC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,WAAW,CAAC,EAAE,sBAAsB,CAAC;IACrC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"video-benchmark-event.js","sourceRoot":"","sources":["../../../lib/events/video-benchmark-event.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module playerAdaptor
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
* @description The parameters describe behavior of the player controls
|
|
8
|
+
* It is used as default controls parameters for correct timeline behavior in overlay
|
|
9
|
+
* and in full screen mode.
|
|
10
|
+
*/
|
|
11
|
+
export interface IControlsDescriptor {
|
|
12
|
+
/**
|
|
13
|
+
* The height in pixels of the controls
|
|
14
|
+
*/
|
|
15
|
+
height: number;
|
|
16
|
+
/**
|
|
17
|
+
* if true the custom scrubber bar will be enabled in overlay.
|
|
18
|
+
* By default player controls scrubber is assumed to present in overlay and the custom scrubber is not shown.
|
|
19
|
+
*/
|
|
20
|
+
scrubberOnInOverlay?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* The track is the progress timeline element of the controls
|
|
23
|
+
* not including the other controls like the play button.
|
|
24
|
+
*/
|
|
25
|
+
track: ControlsDescriptorTrack;
|
|
26
|
+
/**
|
|
27
|
+
* Same parameters as above for full screen. Some players have different parameters of controls
|
|
28
|
+
* when they are in full screen.
|
|
29
|
+
*/
|
|
30
|
+
fullScreen: ControlsDescriptorFullscreen;
|
|
31
|
+
/**
|
|
32
|
+
* Mouse tracking
|
|
33
|
+
*/
|
|
34
|
+
mouse: ControlsDescriptorMouse;
|
|
35
|
+
/**
|
|
36
|
+
* The controls may have a transition effect for hidding and showing.
|
|
37
|
+
*/
|
|
38
|
+
transitions: ControlsDescriptorTransitions;
|
|
39
|
+
/**
|
|
40
|
+
* Timeline behaviour
|
|
41
|
+
*/
|
|
42
|
+
timeline: ControlsDescriptorTimeline;
|
|
43
|
+
/**
|
|
44
|
+
* The controls are dynamically closing and opening based on user mouse movement.
|
|
45
|
+
* To fit the the timeline to the state of the controls, we track mouse movement.
|
|
46
|
+
*/
|
|
47
|
+
hideOnPlay?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Set to true if play() action causes controls to hide
|
|
50
|
+
*/
|
|
51
|
+
shownOnLoad?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Set to true if controls are shown when the player loads
|
|
54
|
+
*/
|
|
55
|
+
showDelay?: number;
|
|
56
|
+
/**
|
|
57
|
+
* Delay in milliseconds for any show controls action
|
|
58
|
+
*/
|
|
59
|
+
hideDelay?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Delay in milliseconds for hide action (for example after mouse leaves the video frame)
|
|
62
|
+
*/
|
|
63
|
+
firstShowDelay?: number;
|
|
64
|
+
/**
|
|
65
|
+
* Similar to showDelay, but only for first show of controls. Not required for most players.
|
|
66
|
+
*/
|
|
67
|
+
fixVideoRatioOffsets?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Video frame ratio offsets
|
|
70
|
+
*/
|
|
71
|
+
videoRatioOffsets?: ControlsDescriptorVideoRatioOffsets;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
76
|
+
export interface ControlsDescriptorTrack {
|
|
77
|
+
/**
|
|
78
|
+
* The space in pixels between the right edge of the player and the end of the track
|
|
79
|
+
*/
|
|
80
|
+
marginRight: number;
|
|
81
|
+
/**
|
|
82
|
+
* The space in pixels between the left edge of the player and the start of the track
|
|
83
|
+
*/
|
|
84
|
+
marginLeft: number;
|
|
85
|
+
/**
|
|
86
|
+
* Maximum width of the track in pixels.
|
|
87
|
+
* Not required for some of the players because the track width is 100%.
|
|
88
|
+
* If set must be set to an integer representing pixels.
|
|
89
|
+
*/
|
|
90
|
+
maxWidth?: number;
|
|
91
|
+
/**
|
|
92
|
+
* Width of the track in percentage of the whole screen width.
|
|
93
|
+
* Some players don't use fixed width but use
|
|
94
|
+
* percentage instead.
|
|
95
|
+
*/
|
|
96
|
+
widthPercentage?: number;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
export interface ControlsDescriptorFullscreen {
|
|
102
|
+
height: number;
|
|
103
|
+
/**
|
|
104
|
+
* Set the margins for the timeline.
|
|
105
|
+
* if Annoto configured to place the timeline at the top of
|
|
106
|
+
* the screen when the player is in full screen.
|
|
107
|
+
*/
|
|
108
|
+
topTrack?: {
|
|
109
|
+
margins?: number;
|
|
110
|
+
};
|
|
111
|
+
track: ControlsDescriptorTrack;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
116
|
+
export interface ControlsDescriptorMouse {
|
|
117
|
+
/**
|
|
118
|
+
* Set to true if movement of the mouse inside player opens the controls
|
|
119
|
+
*/
|
|
120
|
+
trackMove?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Timeout in milliseconds after which the controls are hiding
|
|
123
|
+
* when mouse inside the player is not moved.
|
|
124
|
+
*/
|
|
125
|
+
moveTimeout?: number;
|
|
126
|
+
/**
|
|
127
|
+
* Set to true if the controls are hiding when mouse leaves the video frame
|
|
128
|
+
* (see hideDelay below).
|
|
129
|
+
*/
|
|
130
|
+
hideOnLeave?: boolean;
|
|
131
|
+
/**
|
|
132
|
+
* Set to true if when mouse enters the video frame the controls gets open.
|
|
133
|
+
*/
|
|
134
|
+
showOnEnter?: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* similar to moveTimeout but for mouse enter into video frame.
|
|
137
|
+
* Useful when trackMove is false
|
|
138
|
+
*/
|
|
139
|
+
enterTimeout?: number;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
144
|
+
export interface ControlsDescriptorTransitions {
|
|
145
|
+
/**
|
|
146
|
+
* Set the css timming for controls show.
|
|
147
|
+
* Default: '0s linear'
|
|
148
|
+
*/
|
|
149
|
+
showTiming?: string;
|
|
150
|
+
/**
|
|
151
|
+
* Set the css timming for controls hide.
|
|
152
|
+
* Default: '0s linear'
|
|
153
|
+
*/
|
|
154
|
+
hideTiming?: string;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* @internal
|
|
158
|
+
*/
|
|
159
|
+
export interface ControlsDescriptorTimeline {
|
|
160
|
+
/**
|
|
161
|
+
* If set to true, and hideOnHide is true as well, the timeline will fade out/in.
|
|
162
|
+
* By default it will transition up and down instead.
|
|
163
|
+
*/
|
|
164
|
+
fadeInOut?: boolean;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* @internal
|
|
168
|
+
*/
|
|
169
|
+
export interface ControlsDescriptorVideoRatioOffsets {
|
|
170
|
+
center?: boolean;
|
|
171
|
+
top: number;
|
|
172
|
+
left: number;
|
|
173
|
+
}
|
|
174
|
+
//# sourceMappingURL=controls-descriptor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"controls-descriptor.d.ts","sourceRoot":"","sources":["../../../lib/player-adapter/controls-descriptor.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;GAKG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B;;;OAGG;IACH,KAAK,EAAE,uBAAuB,CAAC;IAE/B;;;OAGG;IACH,UAAU,EAAE,4BAA4B,CAAC;IAEzC;;OAEG;IACH,KAAK,EAAE,uBAAuB,CAAC;IAE/B;;OAEG;IACH,WAAW,EAAE,6BAA6B,CAAC;IAE3C;;OAEG;IACH,QAAQ,EAAE,0BAA0B,CAAC;IAErC;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;OAEG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B;;OAEG;IACH,iBAAiB,CAAC,EAAE,mCAAmC,CAAC;CAC3D;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACpC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE;QACP,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IAEF,KAAK,EAAE,uBAAuB,CAAC;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACpC;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,mCAAmC;IAChD,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"controls-descriptor.js","sourceRoot":"","sources":["../../../lib/player-adapter/controls-descriptor.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -35,6 +35,16 @@ export interface IAnnotoApi {
|
|
|
35
35
|
* @param index if provided hide specific widget
|
|
36
36
|
*/
|
|
37
37
|
hide(index?: number): Promise<void>;
|
|
38
|
-
|
|
38
|
+
/**
|
|
39
|
+
* get metrics stats
|
|
40
|
+
* @param index widget index, 0 by default
|
|
41
|
+
*/
|
|
42
|
+
getMetadata(index?: number): IMetadata;
|
|
43
|
+
/**
|
|
44
|
+
* Get state of the a widget
|
|
45
|
+
* @param index widget index, 0 by default
|
|
46
|
+
*/
|
|
47
|
+
getWidgetState(index?: number): WidgetStateType;
|
|
39
48
|
}
|
|
49
|
+
export declare type WidgetStateType = 'open' | 'closed' | 'mini' | 'hidden';
|
|
40
50
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/api/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAElC,MAAM,WAAW,UAAU;IACvB;;;OAGG;IACH,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnC;;;OAGG;IACH,IAAI,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACrC;;;OAGG;IACH,OAAO,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACvC;;OAEG;IACH,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACxB;;;OAGG;IACH,IAAI,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACpC;;;OAGG;IACH,IAAI,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACpC,WAAW,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/api/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAElC,MAAM,WAAW,UAAU;IACvB;;;OAGG;IACH,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnC;;;OAGG;IACH,IAAI,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACrC;;;OAGG;IACH,OAAO,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACvC;;OAEG;IACH,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACxB;;;OAGG;IACH,IAAI,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACpC;;;OAGG;IACH,IAAI,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACpC;;;OAGG;IACH,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACvC;;;OAGG;IACH,cAAc,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,eAAe,CAAC;CACnD;AAED,oBAAY,eAAe,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,QAAQ,CAAC"}
|
|
@@ -135,12 +135,12 @@ export interface IPlayerPauseTriggers {
|
|
|
135
135
|
}
|
|
136
136
|
export interface IPlayerPlayTriggers {
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Play video after user adds new comment
|
|
139
139
|
* @default false
|
|
140
140
|
*/
|
|
141
141
|
comment?: boolean;
|
|
142
142
|
/**
|
|
143
|
-
*
|
|
143
|
+
* Play video after user adds new note
|
|
144
144
|
* @default false
|
|
145
145
|
*/
|
|
146
146
|
note?: boolean;
|
|
@@ -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",{"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"}
|
|
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","4444684505b7eb869b6e6aba0a2bfd0af4d6eb5d931cea52581e94a253b82b88","981ba33c6ff98ff4c7a4d660107bb49be10f6451e3c8fb0887e24dc58ee85d40","57d1d9f89e68422f03661b24ac04de7902d7355963636f6655bb62b718165e69","2973f84dac948889fcf028afe93fe0bacf60e9b3ec80af17821069ef38616a99","b570b37ecbea5b65afdeb7f75fc60c9dbef0962a306d6bf5ee5a98c67a158a86","953e37c7017ed022256ebdea713659fa0f3d740331220e4c1249ef4606f778ad","f854509ad41ab18869c0443306df4c25790e56db712279c1d44332656884d3f3","ffa54bd45b3a80b1c66868e76024aa4893b64d447f1cab392b5d5fb50f9a4e4a","a8b98647277d601f98c5b4a8f6d46a6b514649b6657fdf4a90dbeda58f590f73","b910fc46d6978ed0a5ab4efff83e33ed24fb38390a5f86bd5db304cea6f866da","6efd55d6a4f758b6c77e379f3595acdfcf6d23f2e66672b70cc24af92b41c16e","9d2978ccc534e4e43a605338c05f0372726f00c0f5d6b8e01ca5cb7b8cc9277b","dbf5d3dc455f16f195de76aeff8e8d29f056f9fb5b87f6ca2eb116be655582de","f1d71eecd3cd7f601a9a5cc8961a1e3535e5bfe9365a4c5260f614949a95c41f","bf166e063b23948c4550381381afc4a66c222beb309533e516cde72dd07668e1","20a0995ac53752644c4b936f47067030ba1320e05d11d014bf2e641e793f8a5a","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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.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.dom.iterable.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":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"e34eb9339171ec45da2801c1967e4d378bd61a1dceaa1b1b4e1b6d28cb9ca962","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":1,"noImplicitAny":true,"noStrictGenericChecks":true,"outDir":"./build","removeComments":false,"rootDir":"../lib","skipLibCheck":true,"sourceMap":true,"strict":false,"suppressImplicitAnyIndexErrors":true,"target":2},"fileIdsList":[[54],[54,55,56,57,58],[54,56],[72,106,107],[73,106],[110],[111],[117,119],[122,124,125,126,127,128,129,130,131,132,133,134],[122,123,125,126,127,128,129,130,131,132,133,134],[123,124,125,126,127,128,129,130,131,132,133,134],[122,123,124,126,127,128,129,130,131,132,133,134],[122,123,124,125,127,128,129,130,131,132,133,134],[122,123,124,125,126,128,129,130,131,132,133,134],[122,123,124,125,126,127,129,130,131,132,133,134],[122,123,124,125,126,127,128,130,131,132,133,134],[122,123,124,125,126,127,128,129,131,132,133,134],[122,123,124,125,126,127,128,129,130,132,133,134],[122,123,124,125,126,127,128,129,130,131,133,134],[122,123,124,125,126,127,128,129,130,131,132,134],[122,123,124,125,126,127,128,129,130,131,132,133],[103,104],[72,73,80,89],[64,72,80],[96],[68,73,81],[89],[70,72,80],[72],[72,74,89,95],[73],[80,89,95],[72,73,75,80,89,92,95],[75,89,92,95],[105],[95],[70,72,89],[62],[94],[87,96,98],[80],[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],[86],[72,74,89,95,98],[140],[113,114],[113,114,115,116],[118],[44,50,51],[36,44],[33,34,35,36,37,38,39,42,43],[34,39,41,42],[45,46,47,48],[47],[41,44,49,52],[40,44]],"referencedMap":[[56,1],[59,2],[55,1],[57,3],[58,1],[108,4],[109,5],[111,6],[112,7],[120,8],[123,9],[124,10],[122,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,19],[133,20],[134,21],[105,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[71,29],[72,29],[73,30],[74,31],[75,32],[76,33],[77,34],[106,35],[78,29],[79,36],[80,37],[83,38],[84,39],[87,29],[88,40],[89,29],[92,41],[103,42],[94,41],[95,43],[97,27],[99,44],[100,27],[141,45],[115,46],[117,47],[116,46],[119,48],[52,49],[37,50],[44,51],[43,52],[49,53],[48,54],[53,55],[41,56]],"exportedModulesMap":[[56,1],[59,2],[55,1],[57,3],[58,1],[108,4],[109,5],[111,6],[112,7],[120,8],[123,9],[124,10],[122,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,19],[133,20],[134,21],[105,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[71,29],[72,29],[73,30],[74,31],[75,32],[76,33],[77,34],[106,35],[78,29],[79,36],[80,37],[83,38],[84,39],[87,29],[88,40],[89,29],[92,41],[103,42],[94,41],[95,43],[97,27],[99,44],[100,27],[141,45],[115,46],[117,47],[116,46],[119,48],[52,49],[37,50],[44,51],[43,52],[49,53],[48,54],[53,55],[41,56]],"semanticDiagnosticsPerFile":[56,54,59,55,57,58,60,108,109,110,111,112,120,121,123,124,122,125,126,127,128,129,130,131,132,133,134,107,135,104,62,105,63,64,65,66,67,68,69,70,71,72,73,74,61,101,75,76,77,106,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,103,94,95,96,97,98,102,99,100,136,137,138,139,140,141,113,115,117,116,114,119,118,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,2,1,32,10,9,51,52,50,33,34,35,37,44,38,36,42,39,43,49,48,45,46,47,53,40,41]},"version":"4.4.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.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.dom.iterable.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":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"e34eb9339171ec45da2801c1967e4d378bd61a1dceaa1b1b4e1b6d28cb9ca962","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","4444684505b7eb869b6e6aba0a2bfd0af4d6eb5d931cea52581e94a253b82b88","981ba33c6ff98ff4c7a4d660107bb49be10f6451e3c8fb0887e24dc58ee85d40","57d1d9f89e68422f03661b24ac04de7902d7355963636f6655bb62b718165e69","2973f84dac948889fcf028afe93fe0bacf60e9b3ec80af17821069ef38616a99","b570b37ecbea5b65afdeb7f75fc60c9dbef0962a306d6bf5ee5a98c67a158a86","953e37c7017ed022256ebdea713659fa0f3d740331220e4c1249ef4606f778ad","f854509ad41ab18869c0443306df4c25790e56db712279c1d44332656884d3f3","ffa54bd45b3a80b1c66868e76024aa4893b64d447f1cab392b5d5fb50f9a4e4a","a8b98647277d601f98c5b4a8f6d46a6b514649b6657fdf4a90dbeda58f590f73","b910fc46d6978ed0a5ab4efff83e33ed24fb38390a5f86bd5db304cea6f866da","6efd55d6a4f758b6c77e379f3595acdfcf6d23f2e66672b70cc24af92b41c16e","9d2978ccc534e4e43a605338c05f0372726f00c0f5d6b8e01ca5cb7b8cc9277b","dbf5d3dc455f16f195de76aeff8e8d29f056f9fb5b87f6ca2eb116be655582de","f1d71eecd3cd7f601a9a5cc8961a1e3535e5bfe9365a4c5260f614949a95c41f","bf166e063b23948c4550381381afc4a66c222beb309533e516cde72dd07668e1","20a0995ac53752644c4b936f47067030ba1320e05d11d014bf2e641e793f8a5a","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":1,"noImplicitAny":true,"noStrictGenericChecks":true,"outDir":"./build","removeComments":false,"rootDir":"../lib","skipLibCheck":true,"sourceMap":true,"strict":false,"suppressImplicitAnyIndexErrors":true,"target":2},"fileIdsList":[[54],[54,55,56,57,58],[54,56],[72,106,107],[73,106],[110],[111],[117,119],[122,124,125,126,127,128,129,130,131,132,133,134],[122,123,125,126,127,128,129,130,131,132,133,134],[123,124,125,126,127,128,129,130,131,132,133,134],[122,123,124,126,127,128,129,130,131,132,133,134],[122,123,124,125,127,128,129,130,131,132,133,134],[122,123,124,125,126,128,129,130,131,132,133,134],[122,123,124,125,126,127,129,130,131,132,133,134],[122,123,124,125,126,127,128,130,131,132,133,134],[122,123,124,125,126,127,128,129,131,132,133,134],[122,123,124,125,126,127,128,129,130,132,133,134],[122,123,124,125,126,127,128,129,130,131,133,134],[122,123,124,125,126,127,128,129,130,131,132,134],[122,123,124,125,126,127,128,129,130,131,132,133],[103,104],[72,73,80,89],[64,72,80],[96],[68,73,81],[89],[70,72,80],[72],[72,74,89,95],[73],[80,89,95],[72,73,75,80,89,92,95],[75,89,92,95],[105],[95],[70,72,89],[62],[94],[87,96,98],[80],[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],[86],[72,74,89,95,98],[140],[113,114],[113,114,115,116],[118],[44,50,51],[36,44],[33,34,35,36,37,38,39,42,43],[34,39,41,42],[45,46,47,48],[47],[41,44,49,52],[40,44]],"referencedMap":[[56,1],[59,2],[55,1],[57,3],[58,1],[108,4],[109,5],[111,6],[112,7],[120,8],[123,9],[124,10],[122,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,19],[133,20],[134,21],[105,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[71,29],[72,29],[73,30],[74,31],[75,32],[76,33],[77,34],[106,35],[78,29],[79,36],[80,37],[83,38],[84,39],[87,29],[88,40],[89,29],[92,41],[103,42],[94,41],[95,43],[97,27],[99,44],[100,27],[141,45],[115,46],[117,47],[116,46],[119,48],[52,49],[37,50],[44,51],[43,52],[49,53],[48,54],[53,55],[41,56]],"exportedModulesMap":[[56,1],[59,2],[55,1],[57,3],[58,1],[108,4],[109,5],[111,6],[112,7],[120,8],[123,9],[124,10],[122,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,19],[133,20],[134,21],[105,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[71,29],[72,29],[73,30],[74,31],[75,32],[76,33],[77,34],[106,35],[78,29],[79,36],[80,37],[83,38],[84,39],[87,29],[88,40],[89,29],[92,41],[103,42],[94,41],[95,43],[97,27],[99,44],[100,27],[141,45],[115,46],[117,47],[116,46],[119,48],[52,49],[37,50],[44,51],[43,52],[49,53],[48,54],[53,55],[41,56]],"semanticDiagnosticsPerFile":[56,54,59,55,57,58,60,108,109,110,111,112,120,121,123,124,122,125,126,127,128,129,130,131,132,133,134,107,135,104,62,105,63,64,65,66,67,68,69,70,71,72,73,74,61,101,75,76,77,106,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,103,94,95,96,97,98,102,99,100,136,137,138,139,140,141,113,115,117,116,114,119,118,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,2,1,32,10,9,51,52,50,33,34,35,37,44,38,36,42,39,43,49,48,45,46,47,53,40,41]},"version":"4.4.4"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annoto/widget-api",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.6",
|
|
4
4
|
"description": "Annoto Widget API definitions",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Genadi Sokolov [genadis.pub@gmail.com]",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"info": "nps help",
|
|
24
24
|
"help": "nps help"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "12ab474d06115fcd3249b78231ca85d0c3c51ea6"
|
|
27
27
|
}
|