@vindral/web-sdk 2.0.8 → 2.0.9
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/index.d.ts +1 -1
- package/package.json +1 -1
- package/web-sdk.esm.js +1 -1
- package/web-sdk.umd.js +1 -1
package/index.d.ts
CHANGED
|
@@ -348,7 +348,7 @@ export declare const authenticationExpiredError: () => VindralError;
|
|
|
348
348
|
export declare const inactivityError: () => VindralError;
|
|
349
349
|
export declare const channelNotFoundError: () => VindralError;
|
|
350
350
|
export declare const noIncomingDataError: () => VindralError;
|
|
351
|
-
export declare const unableToConnectError: () => VindralError;
|
|
351
|
+
export declare const unableToConnectError: (source?: Error | undefined) => VindralError;
|
|
352
352
|
export declare const unableToConnectAfterRetriesError: () => VindralError;
|
|
353
353
|
declare type State = "connected" | "disconnected" | "connecting";
|
|
354
354
|
interface ConnectionModuleListeners {
|
package/package.json
CHANGED