@incodetech/welcome 1.85.0-20251113153224.0 → 1.85.0-rc.20251113153527

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.
Files changed (26) hide show
  1. package/dist/incode-welcome/src/Face/FaceCapture.d.ts +0 -1
  2. package/dist/incode-welcome/src/Face/detection/DetectionManager.d.ts +1 -0
  3. package/dist/incode-welcome/src/ID/CaptureId.d.ts +1 -2
  4. package/dist/incode-welcome/src/curp/EnterCurp.d.ts +4 -8
  5. package/dist/incode-welcome/src/curp/EnterCurpManager.d.ts +9 -0
  6. package/dist/incode-welcome/src/curp/EnterCurpV2.d.ts +9 -0
  7. package/dist/incode-welcome/src/faceMatch/FaceMatch.d.ts +4 -7
  8. package/dist/incode-welcome/src/faceMatch/FaceMatchManager.d.ts +11 -0
  9. package/dist/incode-welcome/src/faceMatch/FaceMatchV2.d.ts +11 -0
  10. package/dist/incode-welcome/src/faceMatch/index.d.ts +2 -0
  11. package/dist/incode-welcome/src/index.d.ts +0 -1
  12. package/dist/incode-welcome/src/setup.d.ts +3 -5
  13. package/dist/incode-welcome/src/wasmUtils/mlWasmJSApi.d.ts +1 -1
  14. package/dist/onBoarding.mjs +36923 -28493
  15. package/dist/onBoarding.umd.js +758 -361
  16. package/package.json +1 -1
  17. package/dist/incode-welcome/src/ID/IDV2/assets/AgeVerificationStep1Icon.d.ts +0 -2
  18. package/dist/incode-welcome/src/ID/IDV2/assets/AgeVerificationStep2Icon.d.ts +0 -2
  19. package/dist/incode-welcome/src/ID/IDV2/assets/AgeVerificationStep3Icon.d.ts +0 -2
  20. package/dist/incode-welcome/src/ID/IDV2/tutorials/AgeVerification.d.ts +0 -8
  21. package/dist/incode-welcome/src/camera/useOnCameraPermissionChange.d.ts +0 -3
  22. package/dist/incode-welcome/src/contexts/ReadyToRenderContext.d.ts +0 -12
  23. package/dist/incode-welcome/tests/integration/governmentValidation.test.d.ts +0 -1
  24. package/dist/incode-welcome/tests/integration/renderGeolocation.test.d.ts +0 -1
  25. package/dist/incode-welcome/tests/integration/renderWatchlist.test.d.ts +0 -1
  26. /package/dist/incode-welcome/src/faceMatch/{FaceMatch.test.d.ts → FaceMatchV2.test.d.ts} +0 -0
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-20251113153224.0",
6
+ "version": "1.85.0-rc.20251113153527",
7
7
  "publishConfig": {},
8
8
  "exports": {
9
9
  ".": {
@@ -1,2 +0,0 @@
1
- declare const AgeVerificationStep1Icon: () => import("react/jsx-runtime").JSX.Element;
2
- export default AgeVerificationStep1Icon;
@@ -1,2 +0,0 @@
1
- declare const AgeVerificationStep2Icon: () => import("react/jsx-runtime").JSX.Element;
2
- export default AgeVerificationStep2Icon;
@@ -1,2 +0,0 @@
1
- declare const AgeVerificationStep3Icon: () => import("react/jsx-runtime").JSX.Element;
2
- export default AgeVerificationStep3Icon;
@@ -1,8 +0,0 @@
1
- import { FC } from 'react';
2
-
3
- type AgeVerificationProps = {
4
- onContinue: () => void;
5
- mode?: 'passport' | 'id';
6
- };
7
- declare const AgeVerification: FC<AgeVerificationProps>;
8
- export default AgeVerification;
@@ -1,3 +0,0 @@
1
- type CameraOnChange = (state: PermissionState) => void;
2
- export declare function useOnCameraPermissionChange(onChange: CameraOnChange): void;
3
- export {};
@@ -1,12 +0,0 @@
1
- import { ReactNode } from 'react';
2
-
3
- interface ReadyToRenderContextType {
4
- isReadyToRender: boolean;
5
- setisReadyToRender: (value: boolean) => void;
6
- }
7
- interface ReadyToRenderProviderProps {
8
- children: ReactNode;
9
- }
10
- export declare function ReadyToRenderProvider({ children, }: ReadyToRenderProviderProps): import("react/jsx-runtime").JSX.Element;
11
- export declare function useReadyToRender(): ReadyToRenderContextType;
12
- export {};