2 Commits

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", "name": "@svelte-toolkit/jitsi",
"version": "0.1.0", "version": "0.1.1",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -1430,16 +1430,18 @@ interface FaceLandmarkDetectedEvent {
} }
interface ErrorOccurredEvent { interface ErrorOccurredEvent {
/** Additional error details. */ error: {
details?: Record<string, unknown>; /** Additional error details. */
/** The error message. */ details?: Record<string, unknown>;
message?: string; /** The error message. */
/** The coded name of the error. */ message?: string;
name: string; /** The coded name of the error. */
/** Error type/source: 'CONFIG', 'CONNECTION', 'CONFERENCE'. */ name: string;
type: ErrorType; /** Error type/source: 'CONFIG', 'CONNECTION', 'CONFERENCE'. */
/** Whether this is a fatal error which triggered a reconnect overlay. */ type: ErrorType;
isFatal: boolean; /** Whether this is a fatal error which triggered a reconnect overlay. */
isFatal: boolean;
};
} }
interface KnockingParticipantEvent { interface KnockingParticipantEvent {