@incodetech/welcome 1.85.0-20251106172431.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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "./dist/onBoarding.umd.js",
4
4
  "module": "./dist/onBoarding.mjs",
5
5
  "types": "./dist/incode-welcome/src/index.d.ts",
6
- "version": "1.85.0-20251106172431.0",
6
+ "version": "1.85.0-20251106202641.0",
7
7
  "publishConfig": {},
8
8
  "exports": {
9
9
  ".": {
@@ -1,11 +0,0 @@
1
- import { UiConfig } from '../ui/types';
2
-
3
- type FaceMatchManagerProps = {
4
- onSuccess: () => void;
5
- token: string;
6
- existingUser: boolean;
7
- isSecondId: boolean;
8
- uiConfig?: UiConfig;
9
- };
10
- declare const FaceMatchManager: ({ onSuccess, token, existingUser, isSecondId, uiConfig, }: FaceMatchManagerProps) => import("react/jsx-runtime").JSX.Element;
11
- export default FaceMatchManager;
@@ -1,11 +0,0 @@
1
- import { UiConfig } from '../ui/types';
2
-
3
- type FaceMatchV2Props = {
4
- token: string;
5
- uiConfig?: UiConfig;
6
- isSecondId?: boolean;
7
- existingUser?: boolean;
8
- onSuccess?: () => void;
9
- };
10
- declare const FaceMatchV2: ({ token, uiConfig, isSecondId, existingUser, onSuccess, }: FaceMatchV2Props) => import("react/jsx-runtime").JSX.Element;
11
- export default FaceMatchV2;