@pixelverse/strichjs-sdk 1.0.3 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.5] - 2023-04-18
4
+
5
+ ### Fixed
6
+
7
+ - Deactivating audio feedback (beep) was not possible.
8
+
9
+ ### Added
10
+
11
+ - Log a warning to the browser console if an invalid resolution (e.g. 'qhd') is specified in the frame source configuration.
12
+
13
+ ## [1.0.4] - 2023-03-30
14
+
15
+ ### Fixed
16
+
17
+ - Internal code change that addresses a "ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor" build error in older optimized Angular versions.
18
+
3
19
  ## [1.0.3] - 2023-03-30
4
20
 
5
21
  ### Changed
package/dist/strich.d.ts CHANGED
@@ -6,6 +6,7 @@ export class SdkError extends Error {
6
6
  * Flag indicating if this error is related to camera access.
7
7
  */
8
8
  duringCameraAccess: boolean;
9
+ cause?: Error;
9
10
  constructor(message: string, cause?: Error);
10
11
  }
11
12
  /**