@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/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
- }
package/dist/plugins.d.ts DELETED
@@ -1,5 +0,0 @@
1
- declare module 'playcraft/plugins' {
2
- export const MediaTailorPlugin: function;
3
- export const ImaDaiPlugin: function;
4
- export const StallReloadPlugin: function;
5
- }