diff --git a/package.json b/package.json index c0a3f80..e67c980 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.37", + "version": "0.0.38", "author": "Regula Forensics, Inc.", "name": "@regulaforensics/document-reader-recipes", "description": "Document Reader Recipes", diff --git a/src/recipes/authenticity/get-authenticity-check-list/get-authenticity-check-list.recipe.ts b/src/recipes/authenticity/get-authenticity-check-list/get-authenticity-check-list.recipe.ts index ec99e91..848d16c 100644 --- a/src/recipes/authenticity/get-authenticity-check-list/get-authenticity-check-list.recipe.ts +++ b/src/recipes/authenticity/get-authenticity-check-list/get-authenticity-check-list.recipe.ts @@ -73,7 +73,7 @@ export const getAuthenticityCheckList = (input: ProcessResponse): RAuthenticityC type: subItem.ElementType, location: light === eLights.OFF ? undefined : { light, - area: subItem.Area, + rect: subItem.Area, } })) }) @@ -99,7 +99,7 @@ export const getAuthenticityCheckList = (input: ProcessResponse): RAuthenticityC image: subItem.ResultImages.Images[0].image, location: light === eLights.OFF ? undefined : { light, - area: subItem.Area, + rect: subItem.Area, } })) } @@ -117,7 +117,7 @@ export const getAuthenticityCheckList = (input: ProcessResponse): RAuthenticityC feature: subItem.ElementType ?? eSecurityFeatureType.BLANK, location: light === eLights.OFF ? undefined : { light, - area: subItem.ElementRect, + rect: subItem.ElementRect, } })) }) diff --git a/src/recipes/authenticity/get-authenticity-check-list/models/authenticity-check-list-item/children/authenticity-check/members/index.ts b/src/recipes/authenticity/get-authenticity-check-list/models/authenticity-check-list-item/children/authenticity-check/members/index.ts index e1e1297..dcff7f4 100644 --- a/src/recipes/authenticity/get-authenticity-check-list/models/authenticity-check-list-item/children/authenticity-check/members/index.ts +++ b/src/recipes/authenticity/get-authenticity-check-list/models/authenticity-check-list-item/children/authenticity-check/members/index.ts @@ -1,3 +1,4 @@ +export * from './children' export * from './authenticity-ident-check.model' export * from './authenticity-photo-ident-check.model' export * from './authenticity-security-check.model'