@getyoti/react-face-capture 2.3.0 → 2.3.1

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,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v2.3.1
4
+
5
+ ### Fixes
6
+
7
+ Fixed an issue introduced in v2.3.0 causing the `numStableFrames` property to be marked as mandatory in the module typing.
8
+
3
9
  ## v2.3.0
4
10
 
5
11
  ### Notices
package/index.d.ts CHANGED
@@ -254,8 +254,8 @@ declare module '@getyoti/react-face-capture' {
254
254
  * (default:center) */
255
255
  faceSelectionMethod?: FACE_SELECTION_METHOD;
256
256
  /** Determines how many frames are used for the stability check.
257
- * The minimum value is 3 and the maximum is 6. */
258
- numStableFrames: number;
257
+ * The minimum value is 3 and the maximum is 6. (default:4) */
258
+ numStableFrames?: number;
259
259
  }
260
260
 
261
261
  /**