@incodetech/welcome 1.85.0-20251106172431.0 → 1.85.0-20251106211942.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.
- package/dist/incode-welcome/src/faceMatch/FaceMatch.d.ts +7 -4
- package/dist/incode-welcome/src/faceMatch/index.d.ts +0 -2
- package/dist/incode-welcome/src/setup.d.ts +3 -0
- package/dist/onBoarding.mjs +5838 -7085
- package/dist/onBoarding.umd.js +202 -527
- package/package.json +1 -1
- package/dist/incode-welcome/src/faceMatch/FaceMatchManager.d.ts +0 -11
- package/dist/incode-welcome/src/faceMatch/FaceMatchV2.d.ts +0 -11
- /package/dist/incode-welcome/src/faceMatch/{FaceMatchV2.test.d.ts → FaceMatch.test.d.ts} +0 -0
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { UiConfig } from '../ui/types';
|
|
2
|
+
|
|
1
3
|
type FaceMatchProps = {
|
|
2
|
-
onSuccess: () => void;
|
|
3
4
|
token: string;
|
|
4
|
-
|
|
5
|
-
isSecondId
|
|
5
|
+
uiConfig?: UiConfig;
|
|
6
|
+
isSecondId?: boolean;
|
|
7
|
+
existingUser?: boolean;
|
|
8
|
+
onSuccess?: () => void;
|
|
6
9
|
};
|
|
7
|
-
declare const FaceMatch: ({
|
|
10
|
+
declare const FaceMatch: ({ token, uiConfig, isSecondId, existingUser, onSuccess, }: FaceMatchProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export default FaceMatch;
|
|
@@ -6,6 +6,9 @@ export declare const initializeDetection: ({ forceProductionMode, disableIpify,
|
|
|
6
6
|
sdkVersion?: string;
|
|
7
7
|
disableIpify?: boolean;
|
|
8
8
|
}) => Promise<void>;
|
|
9
|
+
export declare const setupI18n: (lang: string, translations: {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
}) => Promise<void>;
|
|
9
12
|
type SetupParams = {
|
|
10
13
|
forceProductionMode?: boolean;
|
|
11
14
|
theme?: IncodeTheme;
|