@kkcompany/player 2.25.0-canary.23 → 2.25.0-canary.25
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 +4 -0
- package/dist/StallReload-BFlQRphx.mjs +717 -0
- package/dist/Video-CMbK-cxg.mjs +120 -0
- package/dist/adaptation-BcTsh-wx.mjs +74 -0
- package/dist/api-2BOrEA5d.mjs +1057 -0
- package/dist/debugUtil-IF7p5TSI.mjs +23 -0
- package/dist/events-B3vI3Srm.mjs +16 -0
- package/dist/fixDashManifest-CJ63KKaA.mjs +56 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.mjs +3 -10148
- package/dist/loadPlayer-CQdGA3Te.mjs +1560 -0
- package/dist/loadScript-Ct19kU9g.mjs +13 -0
- package/dist/mediaBindings-CoY60lQw.mjs +542 -0
- package/dist/modules.d.mts +51 -0
- package/dist/modules.mjs +631 -2201
- package/dist/playerCore/index.d.mts +3 -0
- package/dist/playerCore/index.mjs +4 -0
- package/dist/plugins/index.d.mts +2 -0
- package/dist/plugins/index.mjs +3 -0
- package/dist/reactEntry.d.mts +20 -0
- package/dist/reactEntry.mjs +6339 -0
- package/dist/util-B2YBSBjR.mjs +29 -0
- package/package.json +24 -19
- package/dist/core.mjs +0 -3075
- package/dist/index.d.ts +0 -18
- package/dist/index.js +0 -20938
- package/dist/modules.d.ts +0 -89
- package/dist/plugins.d.ts +0 -5
- package/dist/plugins.mjs +0 -1105
- package/dist/react.d.ts +0 -178
- package/dist/react.mjs +0 -13061
package/dist/modules.d.ts
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
type Playlogv3 = Readonly<{
|
|
2
|
-
__proto__: any
|
|
3
|
-
mapLogEvents: ({
|
|
4
|
-
video,
|
|
5
|
-
version,
|
|
6
|
-
playerName,
|
|
7
|
-
userId,
|
|
8
|
-
getPlaybackStatus,
|
|
9
|
-
}: {
|
|
10
|
-
video: any
|
|
11
|
-
version?: any
|
|
12
|
-
playerName: any
|
|
13
|
-
userId?: string
|
|
14
|
-
getPlaybackStatus?: () => any
|
|
15
|
-
}) => {
|
|
16
|
-
addEventListener: (name: any, handler: any) => void
|
|
17
|
-
all: (handler: any) => void
|
|
18
|
-
emit: (
|
|
19
|
-
name: any,
|
|
20
|
-
{
|
|
21
|
-
currentTime,
|
|
22
|
-
}: {
|
|
23
|
-
currentTime: any
|
|
24
|
-
},
|
|
25
|
-
properties: any
|
|
26
|
-
) => void
|
|
27
|
-
updateContent: (content: any) => void
|
|
28
|
-
reset: () => void
|
|
29
|
-
}
|
|
30
|
-
logEventNames: {
|
|
31
|
-
[index: string]: string
|
|
32
|
-
playbackBeganLoading: string
|
|
33
|
-
playbackBeganPlayerStartupTime: string
|
|
34
|
-
playbackBeganVideoStartupTime: string
|
|
35
|
-
playbackVideoBegan: string
|
|
36
|
-
playbackVideoPaused: string
|
|
37
|
-
playbackVideoBufferingBegan: string
|
|
38
|
-
playbackVideoBufferingEnded: string
|
|
39
|
-
playbackVideoEnded: string
|
|
40
|
-
playbackSeekingBegan: string
|
|
41
|
-
playbackSeekingEnded: string
|
|
42
|
-
playbackError: string
|
|
43
|
-
playbackSpeedChange: string
|
|
44
|
-
playbackAudioVolumeChange: string
|
|
45
|
-
playbackAudioMuteChange: string
|
|
46
|
-
playbackStreamingQualityChangeDownload: string
|
|
47
|
-
playbackStreamingQualityChangeRender: string
|
|
48
|
-
playing: string
|
|
49
|
-
paused: string
|
|
50
|
-
seek: string
|
|
51
|
-
rewind: string
|
|
52
|
-
forward: string
|
|
53
|
-
openSettings: string
|
|
54
|
-
closeSettings: string
|
|
55
|
-
speedSettingChange: string
|
|
56
|
-
qualitySettingChange: string
|
|
57
|
-
audioVolumeSettingChange: string
|
|
58
|
-
audioMuteSettingChange: string
|
|
59
|
-
}
|
|
60
|
-
}>
|
|
61
|
-
|
|
62
|
-
declare module 'playcraft/modules' {
|
|
63
|
-
export type EnvironmentError = (
|
|
64
|
-
| {allowDevices: string[]}
|
|
65
|
-
| {allowOSs: string[]}
|
|
66
|
-
| {minVersion: string}
|
|
67
|
-
| {allowBrowsers: string[]}
|
|
68
|
-
) & {name: string}
|
|
69
|
-
|
|
70
|
-
export const createApi: function
|
|
71
|
-
export const startSession: function
|
|
72
|
-
export const getContentInfo: function
|
|
73
|
-
export const getStreamInfo: function
|
|
74
|
-
export const mapLogEvents: function
|
|
75
|
-
export const logEventNames: function
|
|
76
|
-
export const playlogv3: Playlogv3
|
|
77
|
-
export const selectHlsQualities: function
|
|
78
|
-
export const addSentry: function
|
|
79
|
-
export const validateEnvironment: (
|
|
80
|
-
supportEnvironmentList: SupportEnvironmentItem[]
|
|
81
|
-
) => EnvironmentError
|
|
82
|
-
export const ensureTabLock: () => void | (() => void)
|
|
83
|
-
export const handleIOSHeadphonesDisconnection: ({
|
|
84
|
-
maxStuckSeconds,
|
|
85
|
-
}?: {
|
|
86
|
-
maxStuckSeconds?: number | undefined
|
|
87
|
-
}) => void
|
|
88
|
-
export const getVersion: function
|
|
89
|
-
}
|