@incodetech/welcome 1.85.0-20251119174014.0 → 1.85.0-20251120160251.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.
@@ -56,8 +56,9 @@ export type SendFaceImageResponse = {
56
56
  sessionStatus: string;
57
57
  };
58
58
  export declare const isKnownError: (error: Error) => boolean;
59
- export declare const sendFaceImage: ({ canvas, faceCoordinates, sessionToken, }: {
59
+ export declare const sendFaceImage: ({ canvas, faceCoordinates, sessionToken, imageType, }: {
60
60
  canvas: IncodeCanvas;
61
61
  faceCoordinates?: FaceCoordinates;
62
62
  sessionToken: string;
63
+ imageType?: 'selfie' | 'videoSelfie';
63
64
  }) => Promise<SendFaceImageResponse>;
@@ -0,0 +1,10 @@
1
+ import { SendFaceImageError } from '../Face/api/sendFaceImage';
2
+
3
+ export declare const defaultError: {
4
+ title: string;
5
+ description: string;
6
+ };
7
+ export declare const errorContent: Record<SendFaceImageError['message'], {
8
+ title: string;
9
+ description: string;
10
+ }>;