@livepeer/core
Advanced tools
Comparing version 3.2.0-next.4 to 3.2.0-next.5
@@ -565,3 +565,3 @@ import { StoreApi } from 'zustand/vanilla'; | ||
initialProps: Partial<InitialProps>; | ||
playbackId?: string | undefined; | ||
playbackId?: string; | ||
}) => { | ||
@@ -640,2 +640,3 @@ store: MediaControllerStore; | ||
firstFrameTime: number | null; | ||
bootMs: number; | ||
retryCount: number; | ||
@@ -650,3 +651,3 @@ connected: boolean; | ||
timeUnpaused: Timer; | ||
constructor(store: MediaControllerStore, opts: MetricsOpts | undefined); | ||
constructor(store: MediaControllerStore, bootMs: number, opts: MetricsOpts | undefined); | ||
addError(error: string): void; | ||
@@ -688,2 +689,4 @@ getFirstPlayback(): number | null; | ||
errors: number; | ||
/** The number of warnings that have occurred since last heartbeat. */ | ||
warnings: number; | ||
/** The number of times the current playback has stalled, since last heartbeat. */ | ||
@@ -732,6 +735,16 @@ stalled_count: number; | ||
/** The raw event error message. */ | ||
error_message: string; | ||
message: string; | ||
/** The category of the error. */ | ||
category: "offline" | "access-control" | "fallback" | "permissions" | "unknown"; | ||
category: "access-control" | "permissions" | "unknown"; | ||
}; | ||
type WarningEvent = { | ||
/** The event type. */ | ||
type: "warning"; | ||
/** The timestamp of the event, in milliseconds. */ | ||
timestamp: number; | ||
/** The raw event warning message. */ | ||
message: string; | ||
/** The category of the warning. */ | ||
category: "offline" | "fallback"; | ||
}; | ||
type HtmlEvent = { | ||
@@ -777,3 +790,3 @@ /** The event type. */ | ||
}; | ||
type PlaybackEvent = HeartbeatEvent | ErrorEvent | ClipEvent | HtmlEvent | RateChangeEvent | SeekEvent | VideoQualityEvent; | ||
type PlaybackEvent = HeartbeatEvent | ErrorEvent | WarningEvent | ClipEvent | HtmlEvent | RateChangeEvent | SeekEvent | VideoQualityEvent; | ||
type SessionData = { | ||
@@ -780,0 +793,0 @@ session_id: string; |
declare const version: { | ||
readonly core: "@livepeer/core@3.2.0-next.4"; | ||
readonly react: "@livepeer/react@4.2.0-next.4"; | ||
readonly core: "@livepeer/core@3.2.0-next.5"; | ||
readonly react: "@livepeer/react@4.2.0-next.5"; | ||
}; | ||
export { version }; |
// src/version.ts | ||
var core = "@livepeer/core@3.2.0-next.4"; | ||
var react = "@livepeer/react@4.2.0-next.4"; | ||
var core = "@livepeer/core@3.2.0-next.5"; | ||
var react = "@livepeer/react@4.2.0-next.5"; | ||
var version = { | ||
@@ -5,0 +5,0 @@ core, |
@@ -6,3 +6,3 @@ { | ||
"type": "module", | ||
"version": "3.2.0-next.4", | ||
"version": "3.2.0-next.5", | ||
"repository": { | ||
@@ -84,7 +84,7 @@ "type": "git", | ||
"dependencies": { | ||
"multiformats": "^13.0.1", | ||
"zustand": "^4.5.0" | ||
"multiformats": "^13.1.0", | ||
"zustand": "^4.5.2" | ||
}, | ||
"devDependencies": { | ||
"jose": "^5.2.3" | ||
"jose": "^5.3.0" | ||
}, | ||
@@ -91,0 +91,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
757229
7211
Updatedmultiformats@^13.1.0
Updatedzustand@^4.5.2