@hexar/biometric-identity-sdk-core 1.0.20 → 1.0.21

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.
@@ -79,6 +79,7 @@ exports.en = {
79
79
  checkingLiveness: 'Verifying liveness...',
80
80
  matchingFaces: 'Matching faces...',
81
81
  almostDone: 'Almost done...',
82
+ validatingDocumentAndFace: 'Validating document and face...',
82
83
  },
83
84
  result: {
84
85
  success: {
@@ -79,6 +79,7 @@ exports.esAR = {
79
79
  checkingLiveness: 'Verificando prueba de vida...',
80
80
  matchingFaces: 'Comparando rostros...',
81
81
  almostDone: 'Ya casi terminamos...',
82
+ validatingDocumentAndFace: 'Validando documento y rostro...',
82
83
  },
83
84
  result: {
84
85
  success: {
@@ -79,6 +79,7 @@ exports.es = {
79
79
  checkingLiveness: 'Verificando prueba de vida...',
80
80
  matchingFaces: 'Comparando rostros...',
81
81
  almostDone: 'Casi terminamos...',
82
+ validatingDocumentAndFace: 'Validando documento y rostro...',
82
83
  },
83
84
  result: {
84
85
  success: {
@@ -79,6 +79,7 @@ exports.ptBR = {
79
79
  checkingLiveness: 'Verificando prova de vida...',
80
80
  matchingFaces: 'Comparando rostos...',
81
81
  almostDone: 'Quase pronto...',
82
+ validatingDocumentAndFace: 'Validando documento e rosto...',
82
83
  },
83
84
  result: {
84
85
  success: {
@@ -77,6 +77,7 @@ export interface LanguageStrings {
77
77
  checkingLiveness: string;
78
78
  matchingFaces: string;
79
79
  almostDone: string;
80
+ validatingDocumentAndFace: string;
80
81
  };
81
82
  result: {
82
83
  success: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexar/biometric-identity-sdk-core",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "Core AI engine for biometric identity verification",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -83,6 +83,7 @@ export const en: LanguageStrings = {
83
83
  checkingLiveness: 'Verifying liveness...',
84
84
  matchingFaces: 'Matching faces...',
85
85
  almostDone: 'Almost done...',
86
+ validatingDocumentAndFace: 'Validating document and face...',
86
87
  },
87
88
 
88
89
  result: {
@@ -83,6 +83,7 @@ export const esAR: LanguageStrings = {
83
83
  checkingLiveness: 'Verificando prueba de vida...',
84
84
  matchingFaces: 'Comparando rostros...',
85
85
  almostDone: 'Ya casi terminamos...',
86
+ validatingDocumentAndFace: 'Validando documento y rostro...',
86
87
  },
87
88
 
88
89
  result: {
@@ -83,6 +83,7 @@ export const es: LanguageStrings = {
83
83
  checkingLiveness: 'Verificando prueba de vida...',
84
84
  matchingFaces: 'Comparando rostros...',
85
85
  almostDone: 'Casi terminamos...',
86
+ validatingDocumentAndFace: 'Validando documento y rostro...',
86
87
  },
87
88
 
88
89
  result: {
@@ -83,6 +83,7 @@ export const ptBR: LanguageStrings = {
83
83
  checkingLiveness: 'Verificando prova de vida...',
84
84
  matchingFaces: 'Comparando rostos...',
85
85
  almostDone: 'Quase pronto...',
86
+ validatingDocumentAndFace: 'Validando documento e rosto...',
86
87
  },
87
88
 
88
89
  result: {
package/src/i18n/types.ts CHANGED
@@ -83,6 +83,7 @@ export interface LanguageStrings {
83
83
  checkingLiveness: string;
84
84
  matchingFaces: string;
85
85
  almostDone: string;
86
+ validatingDocumentAndFace: string;
86
87
  };
87
88
 
88
89
  result: {