@ha_tecno/live-id-sdk 2.9.0 → 2.9.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -62,7 +62,7 @@ const authFinger = async ({
62
62
  image
63
63
  }) => {
64
64
  try {
65
- const finger = "DI";
65
+ const finger = "RI";
66
66
  const {
67
67
  data
68
68
  } = await axiosInstance.post("/verify", {
@@ -53,7 +53,7 @@ export const authFinger = async ({
53
53
  image
54
54
  }) => {
55
55
  try {
56
- const finger = "DI";
56
+ const finger = "RI";
57
57
  const {
58
58
  data
59
59
  } = await axiosInstance.post("/verify", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ha_tecno/live-id-sdk",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "React Native SDK for Live ID",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -61,7 +61,7 @@ export const registerFingerImages = async ({
61
61
 
62
62
  export const authFinger = async ({ UID, image }: AuthFingerType): Promise<AuthFingerResponse> => {
63
63
  try {
64
- const finger = "DI";
64
+ const finger = "RI";
65
65
  const { data } = await axiosInstance.post(
66
66
  "/verify",
67
67
  { UID, finger, image },