@incodetech/welcome 1.85.0-20251106171057.0 → 1.85.0-20251106202641.0

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.
@@ -1,8 +1,11 @@
1
+ import { UiConfig } from '../ui/types';
2
+
1
3
  type FaceMatchProps = {
2
- onSuccess: () => void;
3
4
  token: string;
4
- existingUser: boolean;
5
- isSecondId: boolean;
5
+ uiConfig?: UiConfig;
6
+ isSecondId?: boolean;
7
+ existingUser?: boolean;
8
+ onSuccess?: () => void;
6
9
  };
7
- declare const FaceMatch: ({ onSuccess, token, existingUser, isSecondId, }: FaceMatchProps) => import("react/jsx-runtime").JSX.Element;
10
+ declare const FaceMatch: ({ token, uiConfig, isSecondId, existingUser, onSuccess, }: FaceMatchProps) => import("react/jsx-runtime").JSX.Element;
8
11
  export default FaceMatch;
@@ -1,5 +1,3 @@
1
- export { default as FaceMatchManager } from './FaceMatchManager';
2
1
  export { default as FaceMatch } from './FaceMatch';
3
- export { default as FaceMatchV2 } from './FaceMatchV2';
4
2
  export { useFaceMatchData } from './useFaceMatchData';
5
3
  export type * from './types';