2 Commits
v0.1.0 ... main

Author SHA1 Message Date
Elijah Duffy
dccf4b01f7 0.1.1 2026-05-04 03:34:38 -07:00
Elijah Duffy
99264dca61 fix ErrorOccurredEvent structure for errorOccurred 2026-04-30 16:36:43 -07:00
2 changed files with 13 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@svelte-toolkit/jitsi",
"version": "0.1.0",
"version": "0.1.1",
"license": "BSD-3-Clause",
"repository": {
"type": "git",

View File

@@ -1430,6 +1430,7 @@ interface FaceLandmarkDetectedEvent {
}
interface ErrorOccurredEvent {
error: {
/** Additional error details. */
details?: Record<string, unknown>;
/** The error message. */
@@ -1440,6 +1441,7 @@ interface ErrorOccurredEvent {
type: ErrorType;
/** Whether this is a fatal error which triggered a reconnect overlay. */
isFatal: boolean;
};
}
interface KnockingParticipantEvent {