@flowplayer/player 3.30.0 → 3.30.1-rc.1
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/core.js +1 -1
- package/default.js +1 -1
- package/embed.js +2 -2
- package/index.d.ts +17 -0
- package/package.json +1 -1
- package/plugins/ads.d.ts +17 -0
- package/plugins/ads.js +1 -1
- package/plugins/airplay.d.ts +17 -0
- package/plugins/analytics.d.ts +17 -0
- package/plugins/analytics.js +1 -1
- package/plugins/asel.d.ts +17 -0
- package/plugins/audio.d.ts +17 -0
- package/plugins/chapters.d.ts +24 -0
- package/plugins/chromecast.d.ts +17 -0
- package/plugins/comscore.d.ts +17 -0
- package/plugins/consent.d.ts +17 -0
- package/plugins/context-menu.d.ts +17 -0
- package/plugins/cuepoints.d.ts +17 -0
- package/plugins/dash.d.ts +17 -0
- package/plugins/drm.d.ts +17 -0
- package/plugins/endscreen.d.ts +17 -0
- package/plugins/fas.d.ts +17 -0
- package/plugins/float-on-scroll.d.ts +17 -0
- package/plugins/ga4.d.ts +17 -0
- package/plugins/ga4.js +1 -1
- package/plugins/gemius.d.ts +17 -0
- package/plugins/google-analytics.d.ts +17 -0
- package/plugins/hls.d.ts +17 -0
- package/plugins/hls.js +1 -1
- package/plugins/id3.d.ts +17 -0
- package/plugins/iframe.d.ts +17 -0
- package/plugins/keyboard.d.ts +17 -0
- package/plugins/media-session.d.ts +17 -0
- package/plugins/message.d.ts +17 -0
- package/plugins/ovp.d.ts +17 -0
- package/plugins/playlist.d.ts +17 -0
- package/plugins/preview.d.ts +17 -0
- package/plugins/qsel.d.ts +17 -0
- package/plugins/qul.d.ts +17 -0
- package/plugins/rts.d.ts +17 -0
- package/plugins/rts.js +3 -3
- package/plugins/share.d.ts +17 -0
- package/plugins/speed.d.ts +17 -0
- package/plugins/ssai.d.ts +17 -0
- package/plugins/ssai.js +1 -1
- package/plugins/subtitles.d.ts +17 -0
- package/plugins/thumbnails.d.ts +17 -0
- package/plugins/tizen.d.ts +17 -0
- package/plugins/vtsel.d.ts +17 -0
- package/plugins/webos.d.ts +17 -0
- package/util/loader.d.ts +17 -0
package/plugins/id3.d.ts
CHANGED
|
@@ -396,6 +396,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
396
396
|
|
|
397
397
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
398
398
|
|
|
399
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
400
|
+
|
|
401
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
402
|
+
|
|
399
403
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
400
404
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
401
405
|
type: string;
|
|
@@ -1312,6 +1316,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1312
1316
|
/* Excluded from this release type: "seek:cancel" */
|
|
1313
1317
|
/* Excluded from this release type: "plugin:registered" */
|
|
1314
1318
|
/* Excluded from this release type: intersectionchange */
|
|
1319
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1315
1320
|
/* Excluded from this release type: beforeplay */
|
|
1316
1321
|
/* Excluded from this release type: beforepause */
|
|
1317
1322
|
/* Excluded from this release type: state */
|
|
@@ -1389,6 +1394,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1389
1394
|
/* Excluded from this release type: on */
|
|
1390
1395
|
/* Excluded from this release type: on */
|
|
1391
1396
|
/* Excluded from this release type: on */
|
|
1397
|
+
/* Excluded from this release type: on */
|
|
1392
1398
|
/**
|
|
1393
1399
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1394
1400
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1720,6 +1726,13 @@ declare const RetryMap: {
|
|
|
1720
1726
|
|
|
1721
1727
|
declare const RTL = "is-rtl";
|
|
1722
1728
|
|
|
1729
|
+
declare const SampleRate: {
|
|
1730
|
+
readonly None: 1;
|
|
1731
|
+
readonly Low: 0.1;
|
|
1732
|
+
readonly Medium: 0.01;
|
|
1733
|
+
readonly High: 0.001;
|
|
1734
|
+
};
|
|
1735
|
+
|
|
1723
1736
|
/**
|
|
1724
1737
|
* @public
|
|
1725
1738
|
*/
|
|
@@ -1944,6 +1957,8 @@ TOUCH_START = "touchstart";
|
|
|
1944
1957
|
|
|
1945
1958
|
declare const TOUCHED = "is-touched";
|
|
1946
1959
|
|
|
1960
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1961
|
+
|
|
1947
1962
|
declare const TV = "is-tv";
|
|
1948
1963
|
|
|
1949
1964
|
/**
|
|
@@ -1951,6 +1966,8 @@ declare const TV = "is-tv";
|
|
|
1951
1966
|
*/
|
|
1952
1967
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1953
1968
|
|
|
1969
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1970
|
+
|
|
1954
1971
|
/**
|
|
1955
1972
|
* @public
|
|
1956
1973
|
* emitted when a video track is selected
|
package/plugins/iframe.d.ts
CHANGED
|
@@ -390,6 +390,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
390
390
|
|
|
391
391
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
392
392
|
|
|
393
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
394
|
+
|
|
395
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
396
|
+
|
|
393
397
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
394
398
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
395
399
|
type: string;
|
|
@@ -1247,6 +1251,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1247
1251
|
/* Excluded from this release type: "seek:cancel" */
|
|
1248
1252
|
/* Excluded from this release type: "plugin:registered" */
|
|
1249
1253
|
/* Excluded from this release type: intersectionchange */
|
|
1254
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1250
1255
|
/* Excluded from this release type: beforeplay */
|
|
1251
1256
|
/* Excluded from this release type: beforepause */
|
|
1252
1257
|
/* Excluded from this release type: state */
|
|
@@ -1324,6 +1329,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1324
1329
|
/* Excluded from this release type: on */
|
|
1325
1330
|
/* Excluded from this release type: on */
|
|
1326
1331
|
/* Excluded from this release type: on */
|
|
1332
|
+
/* Excluded from this release type: on */
|
|
1327
1333
|
/**
|
|
1328
1334
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1329
1335
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1655,6 +1661,13 @@ declare const RetryMap: {
|
|
|
1655
1661
|
|
|
1656
1662
|
declare const RTL = "is-rtl";
|
|
1657
1663
|
|
|
1664
|
+
declare const SampleRate: {
|
|
1665
|
+
readonly None: 1;
|
|
1666
|
+
readonly Low: 0.1;
|
|
1667
|
+
readonly Medium: 0.01;
|
|
1668
|
+
readonly High: 0.001;
|
|
1669
|
+
};
|
|
1670
|
+
|
|
1658
1671
|
/**
|
|
1659
1672
|
* @public
|
|
1660
1673
|
*/
|
|
@@ -1879,6 +1892,8 @@ TOUCH_START = "touchstart";
|
|
|
1879
1892
|
|
|
1880
1893
|
declare const TOUCHED = "is-touched";
|
|
1881
1894
|
|
|
1895
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1896
|
+
|
|
1882
1897
|
declare const TV = "is-tv";
|
|
1883
1898
|
|
|
1884
1899
|
/**
|
|
@@ -1886,6 +1901,8 @@ declare const TV = "is-tv";
|
|
|
1886
1901
|
*/
|
|
1887
1902
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1888
1903
|
|
|
1904
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1905
|
+
|
|
1889
1906
|
/**
|
|
1890
1907
|
* @public
|
|
1891
1908
|
* emitted when a video track is selected
|
package/plugins/keyboard.d.ts
CHANGED
|
@@ -390,6 +390,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
390
390
|
|
|
391
391
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
392
392
|
|
|
393
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
394
|
+
|
|
395
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
396
|
+
|
|
393
397
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
394
398
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
395
399
|
type: string;
|
|
@@ -1246,6 +1250,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1246
1250
|
/* Excluded from this release type: "seek:cancel" */
|
|
1247
1251
|
/* Excluded from this release type: "plugin:registered" */
|
|
1248
1252
|
/* Excluded from this release type: intersectionchange */
|
|
1253
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1249
1254
|
/* Excluded from this release type: beforeplay */
|
|
1250
1255
|
/* Excluded from this release type: beforepause */
|
|
1251
1256
|
/* Excluded from this release type: state */
|
|
@@ -1323,6 +1328,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1323
1328
|
/* Excluded from this release type: on */
|
|
1324
1329
|
/* Excluded from this release type: on */
|
|
1325
1330
|
/* Excluded from this release type: on */
|
|
1331
|
+
/* Excluded from this release type: on */
|
|
1326
1332
|
/**
|
|
1327
1333
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1328
1334
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1654,6 +1660,13 @@ declare const RetryMap: {
|
|
|
1654
1660
|
|
|
1655
1661
|
declare const RTL = "is-rtl";
|
|
1656
1662
|
|
|
1663
|
+
declare const SampleRate: {
|
|
1664
|
+
readonly None: 1;
|
|
1665
|
+
readonly Low: 0.1;
|
|
1666
|
+
readonly Medium: 0.01;
|
|
1667
|
+
readonly High: 0.001;
|
|
1668
|
+
};
|
|
1669
|
+
|
|
1657
1670
|
/**
|
|
1658
1671
|
* @public
|
|
1659
1672
|
*/
|
|
@@ -1878,6 +1891,8 @@ TOUCH_START = "touchstart";
|
|
|
1878
1891
|
|
|
1879
1892
|
declare const TOUCHED = "is-touched";
|
|
1880
1893
|
|
|
1894
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1895
|
+
|
|
1881
1896
|
declare const TV = "is-tv";
|
|
1882
1897
|
|
|
1883
1898
|
/**
|
|
@@ -1885,6 +1900,8 @@ declare const TV = "is-tv";
|
|
|
1885
1900
|
*/
|
|
1886
1901
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1887
1902
|
|
|
1903
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1904
|
+
|
|
1888
1905
|
/**
|
|
1889
1906
|
* @public
|
|
1890
1907
|
* emitted when a video track is selected
|
|
@@ -390,6 +390,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
390
390
|
|
|
391
391
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
392
392
|
|
|
393
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
394
|
+
|
|
395
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
396
|
+
|
|
393
397
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
394
398
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
395
399
|
type: string;
|
|
@@ -1246,6 +1250,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1246
1250
|
/* Excluded from this release type: "seek:cancel" */
|
|
1247
1251
|
/* Excluded from this release type: "plugin:registered" */
|
|
1248
1252
|
/* Excluded from this release type: intersectionchange */
|
|
1253
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1249
1254
|
/* Excluded from this release type: beforeplay */
|
|
1250
1255
|
/* Excluded from this release type: beforepause */
|
|
1251
1256
|
/* Excluded from this release type: state */
|
|
@@ -1323,6 +1328,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1323
1328
|
/* Excluded from this release type: on */
|
|
1324
1329
|
/* Excluded from this release type: on */
|
|
1325
1330
|
/* Excluded from this release type: on */
|
|
1331
|
+
/* Excluded from this release type: on */
|
|
1326
1332
|
/**
|
|
1327
1333
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1328
1334
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1654,6 +1660,13 @@ declare const RetryMap: {
|
|
|
1654
1660
|
|
|
1655
1661
|
declare const RTL = "is-rtl";
|
|
1656
1662
|
|
|
1663
|
+
declare const SampleRate: {
|
|
1664
|
+
readonly None: 1;
|
|
1665
|
+
readonly Low: 0.1;
|
|
1666
|
+
readonly Medium: 0.01;
|
|
1667
|
+
readonly High: 0.001;
|
|
1668
|
+
};
|
|
1669
|
+
|
|
1657
1670
|
/**
|
|
1658
1671
|
* @public
|
|
1659
1672
|
*/
|
|
@@ -1878,6 +1891,8 @@ TOUCH_START = "touchstart";
|
|
|
1878
1891
|
|
|
1879
1892
|
declare const TOUCHED = "is-touched";
|
|
1880
1893
|
|
|
1894
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1895
|
+
|
|
1881
1896
|
declare const TV = "is-tv";
|
|
1882
1897
|
|
|
1883
1898
|
/**
|
|
@@ -1885,6 +1900,8 @@ declare const TV = "is-tv";
|
|
|
1885
1900
|
*/
|
|
1886
1901
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1887
1902
|
|
|
1903
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1904
|
+
|
|
1888
1905
|
/**
|
|
1889
1906
|
* @public
|
|
1890
1907
|
* emitted when a video track is selected
|
package/plugins/message.d.ts
CHANGED
|
@@ -398,6 +398,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
398
398
|
|
|
399
399
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
400
400
|
|
|
401
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
402
|
+
|
|
403
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
404
|
+
|
|
401
405
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
402
406
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
403
407
|
type: string;
|
|
@@ -1300,6 +1304,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1300
1304
|
/* Excluded from this release type: "seek:cancel" */
|
|
1301
1305
|
/* Excluded from this release type: "plugin:registered" */
|
|
1302
1306
|
/* Excluded from this release type: intersectionchange */
|
|
1307
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1303
1308
|
/* Excluded from this release type: beforeplay */
|
|
1304
1309
|
/* Excluded from this release type: beforepause */
|
|
1305
1310
|
/* Excluded from this release type: state */
|
|
@@ -1377,6 +1382,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1377
1382
|
/* Excluded from this release type: on */
|
|
1378
1383
|
/* Excluded from this release type: on */
|
|
1379
1384
|
/* Excluded from this release type: on */
|
|
1385
|
+
/* Excluded from this release type: on */
|
|
1380
1386
|
/**
|
|
1381
1387
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1382
1388
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1708,6 +1714,13 @@ declare const RetryMap: {
|
|
|
1708
1714
|
|
|
1709
1715
|
declare const RTL = "is-rtl";
|
|
1710
1716
|
|
|
1717
|
+
declare const SampleRate: {
|
|
1718
|
+
readonly None: 1;
|
|
1719
|
+
readonly Low: 0.1;
|
|
1720
|
+
readonly Medium: 0.01;
|
|
1721
|
+
readonly High: 0.001;
|
|
1722
|
+
};
|
|
1723
|
+
|
|
1711
1724
|
/**
|
|
1712
1725
|
* @public
|
|
1713
1726
|
*/
|
|
@@ -1937,6 +1950,8 @@ TOUCH_START = "touchstart";
|
|
|
1937
1950
|
|
|
1938
1951
|
declare const TOUCHED = "is-touched";
|
|
1939
1952
|
|
|
1953
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1954
|
+
|
|
1940
1955
|
declare const TV = "is-tv";
|
|
1941
1956
|
|
|
1942
1957
|
/**
|
|
@@ -1944,6 +1959,8 @@ declare const TV = "is-tv";
|
|
|
1944
1959
|
*/
|
|
1945
1960
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1946
1961
|
|
|
1962
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1963
|
+
|
|
1947
1964
|
/**
|
|
1948
1965
|
* @public
|
|
1949
1966
|
* emitted when a video track is selected
|
package/plugins/ovp.d.ts
CHANGED
|
@@ -407,6 +407,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
407
407
|
|
|
408
408
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
409
409
|
|
|
410
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
411
|
+
|
|
412
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
413
|
+
|
|
410
414
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
411
415
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
412
416
|
type: string;
|
|
@@ -1286,6 +1290,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1286
1290
|
/* Excluded from this release type: "seek:cancel" */
|
|
1287
1291
|
/* Excluded from this release type: "plugin:registered" */
|
|
1288
1292
|
/* Excluded from this release type: intersectionchange */
|
|
1293
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1289
1294
|
/* Excluded from this release type: beforeplay */
|
|
1290
1295
|
/* Excluded from this release type: beforepause */
|
|
1291
1296
|
/* Excluded from this release type: state */
|
|
@@ -1363,6 +1368,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1363
1368
|
/* Excluded from this release type: on */
|
|
1364
1369
|
/* Excluded from this release type: on */
|
|
1365
1370
|
/* Excluded from this release type: on */
|
|
1371
|
+
/* Excluded from this release type: on */
|
|
1366
1372
|
/**
|
|
1367
1373
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1368
1374
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1716,6 +1722,13 @@ declare const RetryMap: {
|
|
|
1716
1722
|
|
|
1717
1723
|
declare const RTL = "is-rtl";
|
|
1718
1724
|
|
|
1725
|
+
declare const SampleRate: {
|
|
1726
|
+
readonly None: 1;
|
|
1727
|
+
readonly Low: 0.1;
|
|
1728
|
+
readonly Medium: 0.01;
|
|
1729
|
+
readonly High: 0.001;
|
|
1730
|
+
};
|
|
1731
|
+
|
|
1719
1732
|
/**
|
|
1720
1733
|
* @public
|
|
1721
1734
|
*/
|
|
@@ -1940,6 +1953,8 @@ TOUCH_START = "touchstart";
|
|
|
1940
1953
|
|
|
1941
1954
|
declare const TOUCHED = "is-touched";
|
|
1942
1955
|
|
|
1956
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1957
|
+
|
|
1943
1958
|
declare const TV = "is-tv";
|
|
1944
1959
|
|
|
1945
1960
|
/**
|
|
@@ -1947,6 +1962,8 @@ declare const TV = "is-tv";
|
|
|
1947
1962
|
*/
|
|
1948
1963
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1949
1964
|
|
|
1965
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1966
|
+
|
|
1950
1967
|
/**
|
|
1951
1968
|
* @public
|
|
1952
1969
|
* emitted when a video track is selected
|
package/plugins/playlist.d.ts
CHANGED
|
@@ -398,6 +398,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
398
398
|
|
|
399
399
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
400
400
|
|
|
401
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
402
|
+
|
|
403
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
404
|
+
|
|
401
405
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
402
406
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
403
407
|
type: string;
|
|
@@ -1301,6 +1305,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1301
1305
|
/* Excluded from this release type: "seek:cancel" */
|
|
1302
1306
|
/* Excluded from this release type: "plugin:registered" */
|
|
1303
1307
|
/* Excluded from this release type: intersectionchange */
|
|
1308
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1304
1309
|
/* Excluded from this release type: beforeplay */
|
|
1305
1310
|
/* Excluded from this release type: beforepause */
|
|
1306
1311
|
/* Excluded from this release type: state */
|
|
@@ -1378,6 +1383,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1378
1383
|
/* Excluded from this release type: on */
|
|
1379
1384
|
/* Excluded from this release type: on */
|
|
1380
1385
|
/* Excluded from this release type: on */
|
|
1386
|
+
/* Excluded from this release type: on */
|
|
1381
1387
|
/**
|
|
1382
1388
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1383
1389
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1928,6 +1934,13 @@ declare const RetryMap: {
|
|
|
1928
1934
|
|
|
1929
1935
|
declare const RTL = "is-rtl";
|
|
1930
1936
|
|
|
1937
|
+
declare const SampleRate: {
|
|
1938
|
+
readonly None: 1;
|
|
1939
|
+
readonly Low: 0.1;
|
|
1940
|
+
readonly Medium: 0.01;
|
|
1941
|
+
readonly High: 0.001;
|
|
1942
|
+
};
|
|
1943
|
+
|
|
1931
1944
|
/**
|
|
1932
1945
|
* @public
|
|
1933
1946
|
*/
|
|
@@ -2181,6 +2194,8 @@ TOUCH_START = "touchstart";
|
|
|
2181
2194
|
|
|
2182
2195
|
declare const TOUCHED = "is-touched";
|
|
2183
2196
|
|
|
2197
|
+
declare type TSampleRate = typeof SampleRate;
|
|
2198
|
+
|
|
2184
2199
|
declare const TV = "is-tv";
|
|
2185
2200
|
|
|
2186
2201
|
/**
|
|
@@ -2188,6 +2203,8 @@ declare const TV = "is-tv";
|
|
|
2188
2203
|
*/
|
|
2189
2204
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
2190
2205
|
|
|
2206
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
2207
|
+
|
|
2191
2208
|
/**
|
|
2192
2209
|
* @public
|
|
2193
2210
|
* emitted when a video track is selected
|
package/plugins/preview.d.ts
CHANGED
|
@@ -390,6 +390,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
390
390
|
|
|
391
391
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
392
392
|
|
|
393
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
394
|
+
|
|
395
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
396
|
+
|
|
393
397
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
394
398
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
395
399
|
type: string;
|
|
@@ -1252,6 +1256,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1252
1256
|
/* Excluded from this release type: "seek:cancel" */
|
|
1253
1257
|
/* Excluded from this release type: "plugin:registered" */
|
|
1254
1258
|
/* Excluded from this release type: intersectionchange */
|
|
1259
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1255
1260
|
/* Excluded from this release type: beforeplay */
|
|
1256
1261
|
/* Excluded from this release type: beforepause */
|
|
1257
1262
|
/* Excluded from this release type: state */
|
|
@@ -1329,6 +1334,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1329
1334
|
/* Excluded from this release type: on */
|
|
1330
1335
|
/* Excluded from this release type: on */
|
|
1331
1336
|
/* Excluded from this release type: on */
|
|
1337
|
+
/* Excluded from this release type: on */
|
|
1332
1338
|
/**
|
|
1333
1339
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1334
1340
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1730,6 +1736,13 @@ declare const RetryMap: {
|
|
|
1730
1736
|
|
|
1731
1737
|
declare const RTL = "is-rtl";
|
|
1732
1738
|
|
|
1739
|
+
declare const SampleRate: {
|
|
1740
|
+
readonly None: 1;
|
|
1741
|
+
readonly Low: 0.1;
|
|
1742
|
+
readonly Medium: 0.01;
|
|
1743
|
+
readonly High: 0.001;
|
|
1744
|
+
};
|
|
1745
|
+
|
|
1733
1746
|
/**
|
|
1734
1747
|
* @public
|
|
1735
1748
|
*/
|
|
@@ -1962,6 +1975,8 @@ declare namespace triggers {
|
|
|
1962
1975
|
}
|
|
1963
1976
|
}
|
|
1964
1977
|
|
|
1978
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1979
|
+
|
|
1965
1980
|
declare const TV = "is-tv";
|
|
1966
1981
|
|
|
1967
1982
|
/**
|
|
@@ -1969,6 +1984,8 @@ declare const TV = "is-tv";
|
|
|
1969
1984
|
*/
|
|
1970
1985
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1971
1986
|
|
|
1987
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1988
|
+
|
|
1972
1989
|
/**
|
|
1973
1990
|
* @public
|
|
1974
1991
|
* emitted when a video track is selected
|
package/plugins/qsel.d.ts
CHANGED
|
@@ -397,6 +397,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
397
397
|
|
|
398
398
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
399
399
|
|
|
400
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
401
|
+
|
|
402
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
403
|
+
|
|
400
404
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
401
405
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
402
406
|
type: string;
|
|
@@ -1247,6 +1251,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1247
1251
|
/* Excluded from this release type: "seek:cancel" */
|
|
1248
1252
|
/* Excluded from this release type: "plugin:registered" */
|
|
1249
1253
|
/* Excluded from this release type: intersectionchange */
|
|
1254
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1250
1255
|
/* Excluded from this release type: beforeplay */
|
|
1251
1256
|
/* Excluded from this release type: beforepause */
|
|
1252
1257
|
/* Excluded from this release type: state */
|
|
@@ -1324,6 +1329,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1324
1329
|
/* Excluded from this release type: on */
|
|
1325
1330
|
/* Excluded from this release type: on */
|
|
1326
1331
|
/* Excluded from this release type: on */
|
|
1332
|
+
/* Excluded from this release type: on */
|
|
1327
1333
|
/**
|
|
1328
1334
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1329
1335
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1704,6 +1710,13 @@ declare const RetryMap: {
|
|
|
1704
1710
|
|
|
1705
1711
|
declare const RTL = "is-rtl";
|
|
1706
1712
|
|
|
1713
|
+
declare const SampleRate: {
|
|
1714
|
+
readonly None: 1;
|
|
1715
|
+
readonly Low: 0.1;
|
|
1716
|
+
readonly Medium: 0.01;
|
|
1717
|
+
readonly High: 0.001;
|
|
1718
|
+
};
|
|
1719
|
+
|
|
1707
1720
|
/**
|
|
1708
1721
|
* @public
|
|
1709
1722
|
*/
|
|
@@ -1953,6 +1966,8 @@ declare const TOUCHED = "is-touched";
|
|
|
1953
1966
|
|
|
1954
1967
|
/* Excluded from this release type: TRACKS */
|
|
1955
1968
|
|
|
1969
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1970
|
+
|
|
1956
1971
|
declare const TV = "is-tv";
|
|
1957
1972
|
|
|
1958
1973
|
/**
|
|
@@ -1960,6 +1975,8 @@ declare const TV = "is-tv";
|
|
|
1960
1975
|
*/
|
|
1961
1976
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1962
1977
|
|
|
1978
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1979
|
+
|
|
1963
1980
|
/**
|
|
1964
1981
|
* @public
|
|
1965
1982
|
* emitted when a video track is selected
|
package/plugins/qul.d.ts
CHANGED
|
@@ -390,6 +390,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
390
390
|
|
|
391
391
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
392
392
|
|
|
393
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
394
|
+
|
|
395
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
396
|
+
|
|
393
397
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
394
398
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
395
399
|
type: string;
|
|
@@ -1240,6 +1244,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1240
1244
|
/* Excluded from this release type: "seek:cancel" */
|
|
1241
1245
|
/* Excluded from this release type: "plugin:registered" */
|
|
1242
1246
|
/* Excluded from this release type: intersectionchange */
|
|
1247
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1243
1248
|
/* Excluded from this release type: beforeplay */
|
|
1244
1249
|
/* Excluded from this release type: beforepause */
|
|
1245
1250
|
/* Excluded from this release type: state */
|
|
@@ -1317,6 +1322,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1317
1322
|
/* Excluded from this release type: on */
|
|
1318
1323
|
/* Excluded from this release type: on */
|
|
1319
1324
|
/* Excluded from this release type: on */
|
|
1325
|
+
/* Excluded from this release type: on */
|
|
1320
1326
|
/**
|
|
1321
1327
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1322
1328
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -1669,6 +1675,13 @@ declare const RetryMap: {
|
|
|
1669
1675
|
|
|
1670
1676
|
declare const RTL = "is-rtl";
|
|
1671
1677
|
|
|
1678
|
+
declare const SampleRate: {
|
|
1679
|
+
readonly None: 1;
|
|
1680
|
+
readonly Low: 0.1;
|
|
1681
|
+
readonly Medium: 0.01;
|
|
1682
|
+
readonly High: 0.001;
|
|
1683
|
+
};
|
|
1684
|
+
|
|
1672
1685
|
/**
|
|
1673
1686
|
* @public
|
|
1674
1687
|
*/
|
|
@@ -1893,6 +1906,8 @@ TOUCH_START = "touchstart";
|
|
|
1893
1906
|
|
|
1894
1907
|
declare const TOUCHED = "is-touched";
|
|
1895
1908
|
|
|
1909
|
+
declare type TSampleRate = typeof SampleRate;
|
|
1910
|
+
|
|
1896
1911
|
declare const TV = "is-tv";
|
|
1897
1912
|
|
|
1898
1913
|
/**
|
|
@@ -1900,6 +1915,8 @@ declare const TV = "is-tv";
|
|
|
1900
1915
|
*/
|
|
1901
1916
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
1902
1917
|
|
|
1918
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
1919
|
+
|
|
1903
1920
|
/**
|
|
1904
1921
|
* @public
|
|
1905
1922
|
* emitted when a video track is selected
|
package/plugins/rts.d.ts
CHANGED
|
@@ -409,6 +409,10 @@ declare type ExtractPureAPI<T> = T extends PlayerWith<infer PureAPI> ? PureAPI :
|
|
|
409
409
|
|
|
410
410
|
declare type ExtractSrcExtension<PluginBareConfig> = Get<PluginBareConfig, "src"> extends UnsafeSource<infer SrcMixinType> ? SrcMixinType : never;
|
|
411
411
|
|
|
412
|
+
declare const FEATURE_USAGE = "flowplayer:feature";
|
|
413
|
+
|
|
414
|
+
/* Excluded from this release type: FeatureUsageEventDetail */
|
|
415
|
+
|
|
412
416
|
declare type FilterNewSourceTypes<PluginSrcs extends unknown[]> = {
|
|
413
417
|
[Index in keyof PluginSrcs]: PluginSrcs[Index] extends {
|
|
414
418
|
type: string;
|
|
@@ -1446,6 +1450,7 @@ declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap
|
|
|
1446
1450
|
/* Excluded from this release type: "seek:cancel" */
|
|
1447
1451
|
/* Excluded from this release type: "plugin:registered" */
|
|
1448
1452
|
/* Excluded from this release type: intersectionchange */
|
|
1453
|
+
/* Excluded from this release type: "flowplayer:feature" */
|
|
1449
1454
|
/* Excluded from this release type: beforeplay */
|
|
1450
1455
|
/* Excluded from this release type: beforepause */
|
|
1451
1456
|
/* Excluded from this release type: state */
|
|
@@ -1523,6 +1528,7 @@ declare type PlayerCustomEventsOverloads = {
|
|
|
1523
1528
|
/* Excluded from this release type: on */
|
|
1524
1529
|
/* Excluded from this release type: on */
|
|
1525
1530
|
/* Excluded from this release type: on */
|
|
1531
|
+
/* Excluded from this release type: on */
|
|
1526
1532
|
/**
|
|
1527
1533
|
* TODO: this is a workaround, since not all event overloads are typed. when all plugin work is finished, remove this
|
|
1528
1534
|
* https://wowzamedia.jira.com/browse/PLAY-653
|
|
@@ -2001,6 +2007,13 @@ export declare type RTSViewerCountEventDetail = {
|
|
|
2001
2007
|
viewerCount: number;
|
|
2002
2008
|
};
|
|
2003
2009
|
|
|
2010
|
+
declare const SampleRate: {
|
|
2011
|
+
readonly None: 1;
|
|
2012
|
+
readonly Low: 0.1;
|
|
2013
|
+
readonly Medium: 0.01;
|
|
2014
|
+
readonly High: 0.001;
|
|
2015
|
+
};
|
|
2016
|
+
|
|
2004
2017
|
/**
|
|
2005
2018
|
* @public
|
|
2006
2019
|
*/
|
|
@@ -2255,6 +2268,8 @@ TOUCH_START = "touchstart";
|
|
|
2255
2268
|
|
|
2256
2269
|
declare const TOUCHED = "is-touched";
|
|
2257
2270
|
|
|
2271
|
+
declare type TSampleRate = typeof SampleRate;
|
|
2272
|
+
|
|
2258
2273
|
declare const TV = "is-tv";
|
|
2259
2274
|
|
|
2260
2275
|
/**
|
|
@@ -2262,6 +2277,8 @@ declare const TV = "is-tv";
|
|
|
2262
2277
|
*/
|
|
2263
2278
|
declare type UnsafeSource<SrcMixin = unknown> = SourceStr | SourceObj<SrcMixin> | Array<SourceStr | SourceObj<SrcMixin>>;
|
|
2264
2279
|
|
|
2280
|
+
declare type ValidSampleRate = TSampleRate[keyof TSampleRate];
|
|
2281
|
+
|
|
2265
2282
|
/**
|
|
2266
2283
|
* @public
|
|
2267
2284
|
* emitted when a video track is selected
|