@tivio/sdk-js 2.2.1 → 2.3.0
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.
@@ -13,7 +13,7 @@ export declare class PlayerWrapper implements TivioPlayerWrapper {
|
|
13
13
|
reportPlaybackEnded(): void;
|
14
14
|
reportTimeProgress(ms: number): void;
|
15
15
|
seekTo(ms: number): void;
|
16
|
-
setSource(source: Source | null): void;
|
16
|
+
setSource(source: Source | null, calibrationId?: string): void;
|
17
17
|
}
|
18
18
|
/**
|
19
19
|
* Called when tivio is initialized (remote bundle is ready).
|
@@ -18,7 +18,7 @@ export declare class InternalPlayerWrapper implements TivioPlayerWrapper {
|
|
18
18
|
reportPlaybackEnded(): void;
|
19
19
|
reportTimeProgress(ms: number): void;
|
20
20
|
seekTo(ms: number): void;
|
21
|
-
setSource(source: Source | null): void;
|
21
|
+
setSource(source: Source | null, calibrationId?: string): void;
|
22
22
|
/**
|
23
23
|
* Set instance of the real player wrapper (from core-js).
|
24
24
|
*
|