@getlimelight/sdk 0.4.4 → 0.4.5

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/dist/index.d.mts CHANGED
@@ -594,7 +594,7 @@ declare class LimelightClient {
594
594
  * @param requestId - The ID returned from startRequest()
595
595
  * @param error - The error that occurred
596
596
  */
597
- failRequest(requestId: string, error: Error | string): void;
597
+ failRequest(requestId: string, error: unknown): void;
598
598
  }
599
599
  declare const Limelight: LimelightClient;
600
600
 
package/dist/index.d.ts CHANGED
@@ -594,7 +594,7 @@ declare class LimelightClient {
594
594
  * @param requestId - The ID returned from startRequest()
595
595
  * @param error - The error that occurred
596
596
  */
597
- failRequest(requestId: string, error: Error | string): void;
597
+ failRequest(requestId: string, error: unknown): void;
598
598
  }
599
599
  declare const Limelight: LimelightClient;
600
600
 
package/dist/index.js CHANGED
@@ -267,7 +267,7 @@ var SENSITIVE_HEADERS = [
267
267
  var LIMELIGHT_WEB_WSS_URL = "wss://api.getlimelight.io";
268
268
  var LIMELIGHT_DESKTOP_WSS_URL = "ws://localhost:8484";
269
269
  var WS_PATH = "/limelight";
270
- var SDK_VERSION = true ? "0.4.4" : "test-version";
270
+ var SDK_VERSION = true ? "0.4.5" : "test-version";
271
271
  var RENDER_THRESHOLDS = {
272
272
  HOT_VELOCITY: 5,
273
273
  HIGH_RENDER_COUNT: 50,