scandit-datacapture-frameworks-id
Advanced tools
Comparing version 6.27.1 to 6.28.0-beta.1
@@ -116,2 +116,3 @@ import { QuadrilateralJSON } from "scandit-datacapture-frameworks-core"; | ||
allChecksPassed: boolean; | ||
verificationStatus: "authentic" | "maybeForged" | "forged"; | ||
} | ||
@@ -118,0 +119,0 @@ export interface ArgentinaIdBarcodeResultJSON { |
@@ -0,5 +1,11 @@ | ||
import { AamvaBarcodeVerificationStatus } from "./AamvaBarcodeVerificationStatus"; | ||
export declare class AamvaBarcodeVerificationResult { | ||
private json; | ||
/** | ||
* @deprecated | ||
*/ | ||
get allChecksPassed(): boolean; | ||
private _status; | ||
get status(): AamvaBarcodeVerificationStatus; | ||
private static fromJSON; | ||
} |
@@ -70,3 +70,8 @@ export declare enum DocumentType { | ||
ProofOfRegistration = "proofOfRegistration", | ||
TemporaryProtectionPermit = "temporaryProtectionPermit" | ||
TemporaryProtectionPermit = "temporaryProtectionPermit", | ||
MunicipalId = "municipalId", | ||
AfghanCitizenCard = "afghanCitizenCard", | ||
Eid = "eid", | ||
Pass = "pass", | ||
SisId = "sisId" | ||
} |
@@ -29,1 +29,2 @@ export * from './AAMVABarcodeResult'; | ||
export * from './VIZResult'; | ||
export * from './AamvaBarcodeVerificationStatus'; |
@@ -5,2 +5,3 @@ import { BaseController, DataCaptureContext } from 'scandit-datacapture-frameworks-core'; | ||
import { IdCaptureOverlay } from '../IdCaptureOverlay'; | ||
import { IdCaptureFeedback } from '../IdCaptureFeedback'; | ||
export interface IdCaptureProxy { | ||
@@ -16,2 +17,3 @@ createContextForBarcodeVerification(contextJSON: string): Promise<void>; | ||
updateIdCaptureOverlay(overlayJson: string): Promise<void>; | ||
updateFeedback(feedbackJson: string): Promise<void>; | ||
} | ||
@@ -31,2 +33,3 @@ export declare class IdCaptureController extends BaseController<IdCaptureProxy> { | ||
updateIdCaptureOverlay(overlay: IdCaptureOverlay): Promise<void>; | ||
updateFeedback(feedback: IdCaptureFeedback): Promise<void>; | ||
} |
import { DefaultSerializeable, Feedback } from "scandit-datacapture-frameworks-core"; | ||
import { IdCaptureController } from "./controller/IdCaptureController"; | ||
export declare class IdCaptureFeedback extends DefaultSerializeable { | ||
private controller; | ||
static get defaultFeedback(): IdCaptureFeedback; | ||
idCaptured: Feedback; | ||
idRejected: Feedback; | ||
idCaptureTimeout: Feedback; | ||
private _idCaptured; | ||
get idCaptured(): Feedback; | ||
set idCaptured(idCaptured: Feedback); | ||
private _idRejected; | ||
get idRejected(): Feedback; | ||
set idRejected(idRejected: Feedback); | ||
private _idCaptureTimeout; | ||
get idCaptureTimeout(): Feedback; | ||
set idCaptureTimeout(idCaptureTimeout: Feedback); | ||
private static fromJSON; | ||
private static get idDefaults(); | ||
private updateFeedback; | ||
private constructor(); | ||
} | ||
export interface PrivateIdCaptureFeedback { | ||
controller: IdCaptureController; | ||
fromJSON(json: IdCaptureFeedbackJSON): IdCaptureFeedback; | ||
} | ||
export interface IdCaptureFeedbackJSON { | ||
@@ -12,0 +25,0 @@ idCaptured: Feedback; |
{ | ||
"name": "scandit-datacapture-frameworks-id", | ||
"version": "6.27.1", | ||
"version": "6.28.0-beta.1", | ||
"description": "Id common package", | ||
@@ -20,4 +20,4 @@ "author": { | ||
"dependencies": { | ||
"scandit-datacapture-frameworks-core": "6.27.1" | ||
"scandit-datacapture-frameworks-core": "6.28.0-beta.1" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
214596
70
3114
2
+ Addedscandit-datacapture-frameworks-core@6.28.0-beta.1(transitive)
- Removedscandit-datacapture-frameworks-core@6.27.1(transitive)