@regulaforensics/vp-frontend-face-components 6.5.1614-nightly → 6.5.1630-nightly

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.ts CHANGED
@@ -119,8 +119,7 @@ export declare interface FaceLivenessSettings extends Omit<FaceDetectionSettings
119
119
 
120
120
  export declare enum FaceLivenessType {
121
121
  ACTIVE = 0,
122
- PASSIVE = 1,
123
- BLINK = 3
122
+ PASSIVE = 1
124
123
  }
125
124
 
126
125
  export declare class FaceLivenessWebComponent extends HTMLElement {
@@ -222,21 +221,44 @@ declare enum ResponseCode {
222
221
  export { }
223
222
 
224
223
 
224
+
225
225
  declare global {
226
+ const FACE_WASM_S3_PATH: string;
227
+
228
+ namespace React.JSX {
229
+ interface IntrinsicElements {
230
+ 'face-liveness': React.DetailedHTMLProps<
231
+ IFaceLiveness & React.HTMLAttributes<FaceLivenessWebComponent>,
232
+ FaceLivenessWebComponent
233
+ >;
234
+ 'face-capture': React.DetailedHTMLProps<
235
+ IFaceDetection & React.HTMLAttributes<FaceDetectionWebComponent>,
236
+ FaceDetectionWebComponent
237
+ >;
238
+ 'fullscreen-container': React.DetailedHTMLProps<
239
+ React.HTMLAttributes<FullScreenContainer>,
240
+ FullScreenContainer
241
+ >;
242
+ }
243
+ }
244
+
226
245
  interface HTMLElementEventMap {
227
246
  'face-liveness': CustomEvent<FaceLivenessDetailType>;
228
247
  'face-capture': CustomEvent<FaceCaptureDetailType>;
229
248
  }
230
249
  }
231
250
 
232
-
233
- declare namespace v3 {
234
- var DNS: string;
235
- var URL: string;
251
+ declare global {
252
+ const VERSION: string;
253
+ const ENV: string;
236
254
  }
237
255
 
256
+ declare module 'react' {
257
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
258
+ part?: string;
259
+ }
238
260
 
239
- declare namespace v5 {
240
- var DNS: string;
241
- var URL: string;
261
+ interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
262
+ part?: string;
263
+ }
242
264
  }