@flowplayer/player 3.16.0 → 3.17.0-rc

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.
Files changed (54) hide show
  1. package/core/events.d.ts +0 -43
  2. package/core/events.js +2 -19
  3. package/core.js +1 -1
  4. package/default.js +1 -1
  5. package/embed.js +2 -2
  6. package/flowplayer.css +1 -1
  7. package/index.d.ts +0 -68
  8. package/package.json +1 -1
  9. package/plugins/ads.d.ts +4 -68
  10. package/plugins/ads.js +2 -2
  11. package/plugins/airplay.d.ts +0 -68
  12. package/plugins/analytics.d.ts +0 -68
  13. package/plugins/analytics.js +1 -1
  14. package/plugins/asel.d.ts +0 -68
  15. package/plugins/audio.d.ts +0 -68
  16. package/plugins/chapters.d.ts +3 -78
  17. package/plugins/chromecast.d.ts +0 -68
  18. package/plugins/comscore.d.ts +0 -68
  19. package/plugins/consent.d.ts +0 -68
  20. package/plugins/context-menu.d.ts +0 -68
  21. package/plugins/cuepoints.d.ts +77 -44
  22. package/plugins/cuepoints.js +1 -1
  23. package/plugins/dash.d.ts +0 -68
  24. package/plugins/drm.d.ts +0 -68
  25. package/plugins/endscreen.d.ts +0 -68
  26. package/plugins/fas.d.ts +0 -68
  27. package/plugins/float-on-scroll.d.ts +0 -68
  28. package/plugins/ga4.d.ts +0 -68
  29. package/plugins/gemius.d.ts +0 -68
  30. package/plugins/google-analytics.d.ts +0 -68
  31. package/plugins/health.d.ts +0 -68
  32. package/plugins/health.js +1 -1
  33. package/plugins/hls.d.ts +0 -68
  34. package/plugins/id3.d.ts +0 -68
  35. package/plugins/iframe.d.ts +0 -68
  36. package/plugins/keyboard.d.ts +0 -68
  37. package/plugins/media-session.d.ts +0 -68
  38. package/plugins/message.d.ts +0 -68
  39. package/plugins/ovp.d.ts +0 -68
  40. package/plugins/playlist.d.ts +0 -68
  41. package/plugins/preview.d.ts +0 -68
  42. package/plugins/qsel.d.ts +0 -68
  43. package/plugins/qul.d.ts +0 -68
  44. package/plugins/rts.d.ts +0 -68
  45. package/plugins/share.d.ts +0 -68
  46. package/plugins/speed.d.ts +0 -68
  47. package/plugins/ssai.d.ts +0 -68
  48. package/plugins/ssai.js +1 -1
  49. package/plugins/subtitles.d.ts +0 -68
  50. package/plugins/thumbnails.d.ts +0 -68
  51. package/plugins/tizen.d.ts +0 -68
  52. package/plugins/vtsel.d.ts +0 -68
  53. package/plugins/webos.d.ts +0 -68
  54. package/util/loader.d.ts +0 -68
package/plugins/ovp.d.ts CHANGED
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -398,9 +345,6 @@ declare namespace events_2 {
398
345
  SEEKED,
399
346
  SEEKING_2 as SEEKING,
400
347
  DURATION_CHANGE,
401
- CUEPOINTS,
402
- CUEPOINT_START,
403
- CUEPOINT_END,
404
348
  VIEW_ENTER,
405
349
  VIEW_LEAVE,
406
350
  SOURCE,
@@ -953,8 +897,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
953
897
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
954
898
  [REAP]: ReapEventDetail;
955
899
  [SOURCE]: SourceEventDetail;
956
- [CUEPOINT_START]: CuePointStartEventDetail;
957
- [CUEPOINT_END]: CuePointEndEventDetail;
958
900
  [MOUNT]: MountEventDetail;
959
901
  [LIVE]: LiveEventDetail;
960
902
  [DVR]: DvrEventDetail;
@@ -987,16 +929,6 @@ declare type PlayerCustomEventsOverloads = {
987
929
  /* Excluded from this release type: on */
988
930
  /* Excluded from this release type: on */
989
931
  /* Excluded from this release type: on */
990
- /**
991
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
992
- */
993
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
994
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
995
- /**
996
- * Sent when a configured cuepoint is terminated.
997
- */
998
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
999
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
1000
932
  /**
1001
933
  * Sent when the player becomes visible for the user.
1002
934
  */
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -913,8 +857,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
913
857
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
914
858
  [REAP]: ReapEventDetail;
915
859
  [SOURCE]: SourceEventDetail;
916
- [CUEPOINT_START]: CuePointStartEventDetail;
917
- [CUEPOINT_END]: CuePointEndEventDetail;
918
860
  [MOUNT]: MountEventDetail;
919
861
  [LIVE]: LiveEventDetail;
920
862
  [DVR]: DvrEventDetail;
@@ -947,16 +889,6 @@ declare type PlayerCustomEventsOverloads = {
947
889
  /* Excluded from this release type: on */
948
890
  /* Excluded from this release type: on */
949
891
  /* Excluded from this release type: on */
950
- /**
951
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
952
- */
953
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
954
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
955
- /**
956
- * Sent when a configured cuepoint is terminated.
957
- */
958
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
959
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
960
892
  /**
961
893
  * Sent when the player becomes visible for the user.
962
894
  */
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -913,8 +857,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
913
857
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
914
858
  [REAP]: ReapEventDetail;
915
859
  [SOURCE]: SourceEventDetail;
916
- [CUEPOINT_START]: CuePointStartEventDetail;
917
- [CUEPOINT_END]: CuePointEndEventDetail;
918
860
  [MOUNT]: MountEventDetail;
919
861
  [LIVE]: LiveEventDetail;
920
862
  [DVR]: DvrEventDetail;
@@ -947,16 +889,6 @@ declare type PlayerCustomEventsOverloads = {
947
889
  /* Excluded from this release type: on */
948
890
  /* Excluded from this release type: on */
949
891
  /* Excluded from this release type: on */
950
- /**
951
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
952
- */
953
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
954
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
955
- /**
956
- * Sent when a configured cuepoint is terminated.
957
- */
958
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
959
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
960
892
  /**
961
893
  * Sent when the player becomes visible for the user.
962
894
  */
package/plugins/qsel.d.ts CHANGED
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -920,8 +864,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
920
864
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
921
865
  [REAP]: ReapEventDetail;
922
866
  [SOURCE]: SourceEventDetail;
923
- [CUEPOINT_START]: CuePointStartEventDetail;
924
- [CUEPOINT_END]: CuePointEndEventDetail;
925
867
  [MOUNT]: MountEventDetail;
926
868
  [LIVE]: LiveEventDetail;
927
869
  [DVR]: DvrEventDetail;
@@ -954,16 +896,6 @@ declare type PlayerCustomEventsOverloads = {
954
896
  /* Excluded from this release type: on */
955
897
  /* Excluded from this release type: on */
956
898
  /* Excluded from this release type: on */
957
- /**
958
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
959
- */
960
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
961
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
962
- /**
963
- * Sent when a configured cuepoint is terminated.
964
- */
965
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
966
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
967
899
  /**
968
900
  * Sent when the player becomes visible for the user.
969
901
  */
package/plugins/qul.d.ts CHANGED
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -913,8 +857,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
913
857
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
914
858
  [REAP]: ReapEventDetail;
915
859
  [SOURCE]: SourceEventDetail;
916
- [CUEPOINT_START]: CuePointStartEventDetail;
917
- [CUEPOINT_END]: CuePointEndEventDetail;
918
860
  [MOUNT]: MountEventDetail;
919
861
  [LIVE]: LiveEventDetail;
920
862
  [DVR]: DvrEventDetail;
@@ -947,16 +889,6 @@ declare type PlayerCustomEventsOverloads = {
947
889
  /* Excluded from this release type: on */
948
890
  /* Excluded from this release type: on */
949
891
  /* Excluded from this release type: on */
950
- /**
951
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
952
- */
953
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
954
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
955
- /**
956
- * Sent when a configured cuepoint is terminated.
957
- */
958
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
959
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
960
892
  /**
961
893
  * Sent when the player becomes visible for the user.
962
894
  */
package/plugins/rts.d.ts CHANGED
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -913,8 +857,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
913
857
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
914
858
  [REAP]: ReapEventDetail;
915
859
  [SOURCE]: SourceEventDetail;
916
- [CUEPOINT_START]: CuePointStartEventDetail;
917
- [CUEPOINT_END]: CuePointEndEventDetail;
918
860
  [MOUNT]: MountEventDetail;
919
861
  [LIVE]: LiveEventDetail;
920
862
  [DVR]: DvrEventDetail;
@@ -947,16 +889,6 @@ declare type PlayerCustomEventsOverloads = {
947
889
  /* Excluded from this release type: on */
948
890
  /* Excluded from this release type: on */
949
891
  /* Excluded from this release type: on */
950
- /**
951
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
952
- */
953
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
954
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
955
- /**
956
- * Sent when a configured cuepoint is terminated.
957
- */
958
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
959
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
960
892
  /**
961
893
  * Sent when the player becomes visible for the user.
962
894
  */
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -913,8 +857,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
913
857
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
914
858
  [REAP]: ReapEventDetail;
915
859
  [SOURCE]: SourceEventDetail;
916
- [CUEPOINT_START]: CuePointStartEventDetail;
917
- [CUEPOINT_END]: CuePointEndEventDetail;
918
860
  [MOUNT]: MountEventDetail;
919
861
  [LIVE]: LiveEventDetail;
920
862
  [DVR]: DvrEventDetail;
@@ -947,16 +889,6 @@ declare type PlayerCustomEventsOverloads = {
947
889
  /* Excluded from this release type: on */
948
890
  /* Excluded from this release type: on */
949
891
  /* Excluded from this release type: on */
950
- /**
951
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
952
- */
953
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
954
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
955
- /**
956
- * Sent when a configured cuepoint is terminated.
957
- */
958
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
959
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
960
892
  /**
961
893
  * Sent when the player becomes visible for the user.
962
894
  */