@ikonai/sdk-ui 1.0.71 → 1.0.73
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/assets/{audio-playback-worker-CC2FKp8X.js → audio-playback-worker-DLkTvKgj.js} +394 -511
- package/assets/{protocol-worker-DCLZvHGe.js → protocol-worker-BfR3vj38.js} +52 -52
- package/assets/{ui-worker-BQcelAkD.js → ui-worker-D4YPac0e.js} +232 -232
- package/assets/{video-capture-worker-CzOnKSIv.js → video-capture-worker-ZDlmU6Ta.js} +153 -153
- package/assets/{video-playback-worker-BTMuFG90.js → video-playback-worker-BMnMLk3U.js} +203 -203
- package/assets/viseme-worker-BOyyqInI.js +831 -0
- package/ikon-ui-core.d.ts +3 -0
- package/index.js +116 -102
- package/package.json +1 -1
package/ikon-ui-core.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export declare class IkonUiCore {
|
|
|
54
54
|
private liveSnapshot;
|
|
55
55
|
private unsubscribeLiveSnapshotCapture?;
|
|
56
56
|
private readonly seedStreamIds;
|
|
57
|
+
private readonly seededStreamIds;
|
|
57
58
|
constructor(config?: IkonUiCoreConfig);
|
|
58
59
|
dispose(): void;
|
|
59
60
|
private clearAllState;
|
|
@@ -63,6 +64,8 @@ export declare class IkonUiCore {
|
|
|
63
64
|
subscribeToUiStyles(listener: UiStyleListener): () => void;
|
|
64
65
|
subscribeToUiStyleDeletes(listener: UiStyleDeleteListener): () => void;
|
|
65
66
|
getUiStyles(): readonly UiStylePayload[];
|
|
67
|
+
/** True while the given stream's content comes from a seed (boot/live snapshot), not a live update. */
|
|
68
|
+
isSeedStream(streamId: string): boolean;
|
|
66
69
|
private initialize;
|
|
67
70
|
private seedFromLiveSnapshot;
|
|
68
71
|
private seedFromBootSnapshot;
|