@scandit/web-datacapture-id 7.0.0-beta.1

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.
Files changed (87) hide show
  1. package/LICENSE +4 -0
  2. package/README.md +3 -0
  3. package/THIRD-PARTY.txt +73 -0
  4. package/build/js/AamvaBarcodeVerifier.d.ts +9 -0
  5. package/build/js/AamvaBarcodeVerifierResult.d.ts +6 -0
  6. package/build/js/Defaults.d.ts +51 -0
  7. package/build/js/Enums.d.ts +59 -0
  8. package/build/js/IdCapture.d.ts +104 -0
  9. package/build/js/IdCaptureError.d.ts +15 -0
  10. package/build/js/IdCaptureFeedback.d.ts +15 -0
  11. package/build/js/IdCaptureOverlay.d.ts +85 -0
  12. package/build/js/IdCaptureSettings.d.ts +33 -0
  13. package/build/js/Listener.d.ts +9 -0
  14. package/build/js/Region.d.ts +254 -0
  15. package/build/js/RejectionReason.d.ts +7 -0
  16. package/build/js/SerializedTypes.d.ts +263 -0
  17. package/build/js/assets/idCaptureAssets.d.ts +1 -0
  18. package/build/js/captured-id/BarcodeResult.d.ts +94 -0
  19. package/build/js/captured-id/CapturedId.d.ts +50 -0
  20. package/build/js/captured-id/DateResult.d.ts +10 -0
  21. package/build/js/captured-id/DrivingLicenseCategory.d.ts +11 -0
  22. package/build/js/captured-id/DrivingLicenseDetails.d.ts +11 -0
  23. package/build/js/captured-id/IdImages.d.ts +14 -0
  24. package/build/js/captured-id/LocalizedOnlyId.d.ts +9 -0
  25. package/build/js/captured-id/MRZResult.d.ts +22 -0
  26. package/build/js/captured-id/ProfessionalDrivingPermit.d.ts +10 -0
  27. package/build/js/captured-id/VIZResult.d.ts +36 -0
  28. package/build/js/captured-id/VehicleRestriction.d.ts +11 -0
  29. package/build/js/document/DriverLicense.d.ts +11 -0
  30. package/build/js/document/HealthInsuranceCard.d.ts +11 -0
  31. package/build/js/document/IdCaptureDocument.d.ts +28 -0
  32. package/build/js/document/IdCard.d.ts +11 -0
  33. package/build/js/document/Passport.d.ts +11 -0
  34. package/build/js/document/RegionSpecific.d.ts +14 -0
  35. package/build/js/document/RegionSpecificSubtype.d.ts +66 -0
  36. package/build/js/document/ResidencePermit.d.ts +11 -0
  37. package/build/js/document/VisaIcao.d.ts +11 -0
  38. package/build/js/index.d.ts +51 -0
  39. package/build/js/index.js +12 -0
  40. package/build/js/scandit-web-datacapture-id-private.d.ts +5 -0
  41. package/build/js/scanner/FullDocumentScanner.d.ts +14 -0
  42. package/build/js/scanner/Scanner.d.ts +9 -0
  43. package/build/js/scanner/SingleSideScanner.d.ts +20 -0
  44. package/build/js/translations.d.ts +10 -0
  45. package/build/js/worker/IdCaptureWorkerManager.d.ts +20 -0
  46. package/build/js/worker/WorkerMain.d.ts +9 -0
  47. package/build/js/worker/dataCapture.inlineWorker.d.ts +3 -0
  48. package/build/js/worker/dataCaptureEngine.d.ts +86 -0
  49. package/build/js/worker/dataCaptureWorkerRelated.d.ts +305 -0
  50. package/build/js/worker/index.d.ts +1 -0
  51. package/package.json +116 -0
  52. package/sdc-lib/idcapture/Centaurus.worker.min.js +1 -0
  53. package/sdc-lib/idcapture/lightweight/advanced/Centaurus.data +0 -0
  54. package/sdc-lib/idcapture/lightweight/advanced/Centaurus.js +1 -0
  55. package/sdc-lib/idcapture/lightweight/advanced/Centaurus.wasm +0 -0
  56. package/sdc-lib/idcapture/lightweight/advanced-threads/Centaurus.data +0 -0
  57. package/sdc-lib/idcapture/lightweight/advanced-threads/Centaurus.js +1 -0
  58. package/sdc-lib/idcapture/lightweight/advanced-threads/Centaurus.wasm +0 -0
  59. package/sdc-lib/idcapture/lightweight/advanced-threads/Centaurus.worker.js +1 -0
  60. package/sdc-lib/idcapture/lightweight/basic/Centaurus.data +0 -0
  61. package/sdc-lib/idcapture/lightweight/basic/Centaurus.js +1 -0
  62. package/sdc-lib/idcapture/lightweight/basic/Centaurus.wasm +0 -0
  63. package/sdc-lib/resources/models/barcode_classification_default_model.5ed1ecfaacbd108767a80013d11d9af73b8e1d5e.model +0 -0
  64. package/sdc-lib/resources/models/barcode_localization_default_model.f88251f1bff0c68526d9898ef4c8f3b411c3c59e.model +0 -0
  65. package/sdc-lib/resources/models/barcode_localization_dpm_default_model.acd01c12893d98af3a7e472200dbce4afd57631d.model +0 -0
  66. package/sdc-lib/resources/models/barcode_localization_french_post_default_model.e1d7ffb4d1fb636b1c267d2da0ad6003584e668d.model +0 -0
  67. package/sdc-lib/resources/models/barcode_localization_generic_postal_code_default_model.7852c9b58cc2d253466ca3ea60bbd02ca09533ca.model +0 -0
  68. package/sdc-lib/resources/models/barcode_localization_oned_default_model.058a356e6c57475ec928de2f95440aefa46ed5fe.model +0 -0
  69. package/sdc-lib/resources/models/barcode_localization_twod_default_model.54c8ddfd8620c8b508f4108fcba6529ce45f8440.model +0 -0
  70. package/sdc-lib/resources/models/barcode_localization_upu_enhanced_orange.656bffc22efe3137515d791184b1aa471d439310.model +0 -0
  71. package/sdc-lib/resources/models/eu_dl_localization_model.579be0f8cae6c931b93e199d1afec3b61542474c.model +0 -0
  72. package/sdc-lib/resources/models/id_ocr_model.f5b3ffba2d21fa97fa4945f0bb0c1cff9651c677.model +0 -0
  73. package/sdc-lib/resources/models/invalidated_id_classification_default.1f8f6e0345ece7d50a7126f2e5d15aa6b2e2a9bf.model +0 -0
  74. package/sdc-lib/resources/models/mrz_line_localization_model.98a5b38e889546c69f1d43beeda91071ad132340.model +0 -0
  75. package/sdc-lib/resources/models/mrz_localization_model.87d7e0dacb3845548449cc8ccb78526d93212cff.model +0 -0
  76. package/sdc-lib/resources/models/ocr_mrz_default_model.e0dd4c48916ff4ee266439f87cc68eb1793093c3.model +0 -0
  77. package/sdc-lib/resources/models/uk_dl_code_localization_model.579be0f8cae6c931b93e199d1afec3b61542474c.model +0 -0
  78. package/sdc-lib/scandit-datacapture-sdk-id-pthreads.js +1 -0
  79. package/sdc-lib/scandit-datacapture-sdk-id-pthreads.wasm +0 -0
  80. package/sdc-lib/scandit-datacapture-sdk-id-pthreads.worker.js +1 -0
  81. package/sdc-lib/scandit-datacapture-sdk-id-simd-pthreads.js +1 -0
  82. package/sdc-lib/scandit-datacapture-sdk-id-simd-pthreads.wasm +0 -0
  83. package/sdc-lib/scandit-datacapture-sdk-id-simd-pthreads.worker.js +1 -0
  84. package/sdc-lib/scandit-datacapture-sdk-id-simd.js +1 -0
  85. package/sdc-lib/scandit-datacapture-sdk-id-simd.wasm +0 -0
  86. package/sdc-lib/scandit-datacapture-sdk-id.js +1 -0
  87. package/sdc-lib/scandit-datacapture-sdk-id.wasm +0 -0
@@ -0,0 +1,11 @@
1
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
2
+ import { DateResult } from "./DateResult";
3
+ import type { DrivingLicenseCategoryJSON } from "../SerializedTypes";
4
+ export declare class DrivingLicenseCategory implements Serializable<DrivingLicenseCategoryJSON> {
5
+ private json;
6
+ get code(): string;
7
+ get dateOfIssue(): DateResult | null;
8
+ get dateOfExpiry(): DateResult | null;
9
+ private static fromJSON;
10
+ toJSONObject(): DrivingLicenseCategoryJSON;
11
+ }
@@ -0,0 +1,11 @@
1
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
2
+ import { DrivingLicenseCategory } from "./DrivingLicenseCategory";
3
+ import type { DrivingLicenseDetailsJSON } from "../SerializedTypes";
4
+ export declare class DrivingLicenseDetails implements Serializable<DrivingLicenseDetailsJSON> {
5
+ private json;
6
+ get drivingLicenseCategories(): DrivingLicenseCategory[];
7
+ get restrictions(): string | null;
8
+ get endorsements(): string | null;
9
+ private static fromJSON;
10
+ toJSONObject(): DrivingLicenseDetailsJSON;
11
+ }
@@ -0,0 +1,14 @@
1
+ import { IdSide } from "../Enums";
2
+ import type { ImageInfoJSON } from "../SerializedTypes";
3
+ export declare class IdImages {
4
+ private json;
5
+ get face(): string | null;
6
+ get frame(): string | null;
7
+ private static fromJSON;
8
+ getFrame(side: IdSide): string | null;
9
+ getCroppedDocument(side: IdSide): string | null;
10
+ toJSONObject(): ImageInfoJSON;
11
+ }
12
+ export interface PrivateIdImages {
13
+ fromJSON(json: ImageInfoJSON | null): IdImages;
14
+ }
@@ -0,0 +1,9 @@
1
+ import { Quadrilateral } from "@scandit/web-datacapture-core";
2
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
3
+ import type { LocalizedOnlyIdJSON } from "../SerializedTypes";
4
+ export declare class LocalizedOnlyId implements Serializable<LocalizedOnlyIdJSON> {
5
+ private _location;
6
+ get location(): Quadrilateral;
7
+ private static fromJSON;
8
+ toJSONObject(): LocalizedOnlyIdJSON;
9
+ }
@@ -0,0 +1,22 @@
1
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
2
+ import { DateResult } from "./DateResult";
3
+ import type { MRZResultJSON } from "../SerializedTypes";
4
+ export declare class MRZResult implements Serializable<MRZResultJSON> {
5
+ protected json: MRZResultJSON;
6
+ get documentCode(): string;
7
+ get namesAreTruncated(): boolean;
8
+ get optional(): string | null;
9
+ get optional1(): string | null;
10
+ get capturedMrz(): string;
11
+ get personalIdNumber(): string | null;
12
+ get renewalTimes(): number | null;
13
+ get fullNameSimplifiedChinese(): string | null;
14
+ get omittedCharacterCountInGbkName(): number | null;
15
+ get omittedNameCount(): number | null;
16
+ get issuingAuthorityCode(): string | null;
17
+ get passportIssuerIso(): string | null;
18
+ get passportNumber(): string | null;
19
+ get passportDateOfExpiry(): DateResult | null;
20
+ private static fromJSON;
21
+ toJSONObject(): MRZResultJSON;
22
+ }
@@ -0,0 +1,10 @@
1
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
2
+ import { DateResult } from "./DateResult";
3
+ import type { ProfessionalDrivingPermitJSON } from "../SerializedTypes";
4
+ export declare class ProfessionalDrivingPermit implements Serializable<ProfessionalDrivingPermitJSON> {
5
+ private json;
6
+ get dateOfExpiry(): DateResult;
7
+ get codes(): string[];
8
+ private static fromJSON;
9
+ toJSONObject(): ProfessionalDrivingPermitJSON;
10
+ }
@@ -0,0 +1,36 @@
1
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
2
+ import type { SupportedSides } from "../Enums";
3
+ import { DrivingLicenseDetails } from "./DrivingLicenseDetails";
4
+ import type { VIZResultJSON } from "../SerializedTypes";
5
+ export declare class VIZResult implements Serializable<VIZResultJSON> {
6
+ protected json: VIZResultJSON;
7
+ get firstName(): string | null;
8
+ get lastName(): string | null;
9
+ get secondaryLastName(): string | null;
10
+ get fullName(): string;
11
+ get additionalAddressInformation(): string | null;
12
+ get additionalNameInformation(): string | null;
13
+ get documentAdditionalNumber(): string | null;
14
+ get employer(): string | null;
15
+ get issuingAuthority(): string | null;
16
+ get issuingJurisdiction(): string | null;
17
+ get issuingJurisdictionIso(): string | null;
18
+ get maritalStatus(): string | null;
19
+ get personalIdNumber(): string | null;
20
+ get placeOfBirth(): string | null;
21
+ get profession(): string | null;
22
+ get race(): string | null;
23
+ get religion(): string | null;
24
+ get residentialStatus(): string | null;
25
+ get mothersName(): string | null;
26
+ get fathersName(): string | null;
27
+ get capturedSides(): SupportedSides;
28
+ get isBackSideCaptureSupported(): boolean;
29
+ get drivingLicenseDetails(): DrivingLicenseDetails | null;
30
+ get bloodType(): string | null;
31
+ get sponsor(): string | null;
32
+ get visaNumber(): string | null;
33
+ get passportNumber(): string | null;
34
+ private static fromJSON;
35
+ toJSONObject(): VIZResultJSON;
36
+ }
@@ -0,0 +1,11 @@
1
+ import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
2
+ import { DateResult } from "./DateResult";
3
+ import type { VehicleRestrictionJSON } from "../SerializedTypes";
4
+ export declare class VehicleRestriction implements Serializable<VehicleRestrictionJSON> {
5
+ private json;
6
+ get vehicleCode(): string;
7
+ get vehicleRestriction(): string;
8
+ get dateOfIssue(): DateResult;
9
+ private static fromJSON;
10
+ toJSONObject(): VehicleRestrictionJSON;
11
+ }
@@ -0,0 +1,11 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { Region } from "../Region";
4
+ type DriverLicenseDocumentTypeJSON = IdCaptureDocumentJSON;
5
+ export declare class DriverLicense extends IdCaptureDocument {
6
+ readonly documentType: IdCaptureDocumentType;
7
+ constructor(region: Region);
8
+ get region(): Region;
9
+ toJSONObject(): DriverLicenseDocumentTypeJSON;
10
+ }
11
+ export {};
@@ -0,0 +1,11 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { Region } from "../Region";
4
+ type HealthInsuranceCardDocumentTypeJSON = IdCaptureDocumentJSON;
5
+ export declare class HealthInsuranceCard extends IdCaptureDocument {
6
+ readonly documentType: IdCaptureDocumentType;
7
+ constructor(region: Region);
8
+ get region(): Region;
9
+ toJSONObject(): HealthInsuranceCardDocumentTypeJSON;
10
+ }
11
+ export {};
@@ -0,0 +1,28 @@
1
+ import type { Region } from "../Region";
2
+ export declare enum IdCaptureDocumentType {
3
+ Passport = "passport",
4
+ IdCard = "idCard",
5
+ DriverLicense = "driverLicense",
6
+ VisaIcao = "visaIcao",
7
+ ResidencePermit = "residencePermit",
8
+ HealthInsuranceCard = "healthInsuranceCard",
9
+ RegionSpecific = "regionSpecific"
10
+ }
11
+ export interface IdCaptureDocumentJSON {
12
+ region: Region;
13
+ documentType: IdCaptureDocumentType;
14
+ }
15
+ export declare abstract class IdCaptureDocument {
16
+ readonly documentType: IdCaptureDocumentType;
17
+ protected readonly _region: Region;
18
+ protected constructor(region: Region);
19
+ get region(): Region;
20
+ isPassport(): boolean;
21
+ isIdCard(): boolean;
22
+ isDriverLicense(): boolean;
23
+ isVisaIcao(): boolean;
24
+ isHealthInsuranceCard(): boolean;
25
+ isResidencePermit(): boolean;
26
+ isRegionSpecific(): boolean;
27
+ abstract toJSONObject(): IdCaptureDocumentJSON;
28
+ }
@@ -0,0 +1,11 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { Region } from "../Region";
4
+ type IdCardDocumentTypeJSON = IdCaptureDocumentJSON;
5
+ export declare class IdCard extends IdCaptureDocument {
6
+ readonly documentType: IdCaptureDocumentType;
7
+ constructor(region: Region);
8
+ get region(): Region;
9
+ toJSONObject(): IdCardDocumentTypeJSON;
10
+ }
11
+ export {};
@@ -0,0 +1,11 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { Region } from "../Region";
4
+ type PassportDocumentTypeJSON = IdCaptureDocumentJSON;
5
+ export declare class Passport extends IdCaptureDocument {
6
+ readonly documentType: IdCaptureDocumentType;
7
+ constructor(region: Region);
8
+ get region(): Region;
9
+ toJSONObject(): PassportDocumentTypeJSON;
10
+ }
11
+ export {};
@@ -0,0 +1,14 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { RegionSpecificSubtype } from "./RegionSpecificSubtype";
4
+ import { Region } from "../Region";
5
+ export interface RegionSpecificDocumentTypeJSON extends IdCaptureDocumentJSON {
6
+ documentSubtype: string;
7
+ }
8
+ export declare class RegionSpecific extends IdCaptureDocument {
9
+ readonly documentType: IdCaptureDocumentType;
10
+ readonly subtype: RegionSpecificSubtype;
11
+ constructor(subtype: RegionSpecificSubtype);
12
+ get region(): Region;
13
+ toJSONObject(): RegionSpecificDocumentTypeJSON;
14
+ }
@@ -0,0 +1,66 @@
1
+ export declare enum RegionSpecificSubtype {
2
+ UsBorderCrossingCard = "usBorderCrossingCard",
3
+ ChinaExitEntryPermit = "chinaExitEntryPermit",
4
+ UsGlobalEntryCard = "usGlobalEntryCard",
5
+ ChinaMainlandTravelPermitTaiwan = "chinaMainlandTravelPermitTaiwan",
6
+ UsNexusCard = "usNexusCard",
7
+ ChinaMainlandTravelPermitHongKongMacau = "chinaMainlandTravelPermitHongKongMacau",
8
+ ApecBusinessTravelCard = "apecBusinessTravelCard",
9
+ PakistanAfghanCitizenCard = "pakistanAfghanCitizenCard",
10
+ SingaporeFinCard = "singaporeFinCard",
11
+ UsGreenCard = "usGreenCard",
12
+ MalaysiaIkad = "malaysiaIkad",
13
+ MalaysiaMykad = "malaysiaMykad",
14
+ MalaysiaMypr = "malaysiaMypr",
15
+ MexicoConsularVoterId = "mexicoConsularVoterId",
16
+ GermanyEid = "germanyEid",
17
+ UsCommonAccessCard = "usCommonAccessCard",
18
+ PhilippinesMultipurposeId = "philippinesMultipurposeId",
19
+ MalaysiaMykas = "malaysiaMykas",
20
+ MalaysiaMykid = "malaysiaMykid",
21
+ MalaysiaMytentera = "malaysiaMytentera",
22
+ MexicoProfessionalId = "mexicoProfessionalId",
23
+ MalaysiaRefugeeId = "malaysiaRefugeeId",
24
+ CanadaTribalId = "canadaTribalId",
25
+ UsUniformedServicesId = "usUniformedServicesId",
26
+ UsVeteranId = "usVeteranId",
27
+ PhilippinesWorkPermit = "philippinesWorkPermit",
28
+ SingaporeWorkPermit = "singaporeWorkPermit",
29
+ UsWorkPermit = "usWorkPermit",
30
+ PhilippinesSocialSecurityCard = "philippinesSocialSecurityCard",
31
+ SwedenSocialSecurityCard = "swedenSocialSecurityCard",
32
+ CanadaSocialSecurityCard = "canadaSocialSecurityCard",
33
+ UsSocialSecurityCard = "usSocialSecurityCard",
34
+ BelgiumMinorsId = "belgiumMinorsId",
35
+ ColombiaMinorsId = "colombiaMinorsId",
36
+ PeruMinorsId = "peruMinorsId",
37
+ BoliviaMinorsId = "boliviaMinorsId",
38
+ HungaryAddressCard = "hungaryAddressCard",
39
+ UkAsylumRequest = "ukAsylumRequest",
40
+ CanadaCitizenshipCertificate = "canadaCitizenshipCertificate",
41
+ SingaporeEmploymentPass = "singaporeEmploymentPass",
42
+ CanadaMinorsPublicServicesCard = "canadaMinorsPublicServicesCard",
43
+ MalaysiaMypolis = "malaysiaMypolis",
44
+ PhilippinesNbiClearance = "philippinesNbiClearance",
45
+ IndiaPanCard = "indiaPanCard",
46
+ PhilippinesPostalId = "philippinesPostalId",
47
+ PakistanProofOfRegistration = "pakistanProofOfRegistration",
48
+ SingaporeSPass = "singaporeSPass",
49
+ SwedenSisId = "swedenSisId",
50
+ ColombiaTemporaryProtectionPermit = "colombiaTemporaryProtectionPermit",
51
+ UsTwicCard = "usTwicCard",
52
+ UsWeaponPermit = "usWeaponPermit",
53
+ CanadaWeaponPermit = "canadaWeaponPermit",
54
+ IrelandPublicServicesCard = "irelandPublicServicesCard",
55
+ CanadaPublicServicesCard = "canadaPublicServicesCard",
56
+ PakistanConsularId = "pakistanConsularId",
57
+ GuatemalaConsularId = "guatemalaConsularId",
58
+ MexicoConsularId = "mexicoConsularId",
59
+ PhilippinesTaxId = "philippinesTaxId",
60
+ MexicoTaxId = "mexicoTaxId",
61
+ ChinaOneWayPermit = "chinaOneWayPermit",
62
+ UsMedicalMarijuanaCard = "usMedicalMarijuanaCard",
63
+ UsMunicipalId = "usMunicipalId",
64
+ AustraliaAsicCard = "australiaAsicCard",
65
+ UaeVehicleRegistrationCard = "uaeVehicleRegistrationCard"
66
+ }
@@ -0,0 +1,11 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { Region } from "../Region";
4
+ type ResidencePermitDocumentTypeJSON = IdCaptureDocumentJSON;
5
+ export declare class ResidencePermit extends IdCaptureDocument {
6
+ readonly documentType: IdCaptureDocumentType;
7
+ constructor(region: Region);
8
+ get region(): Region;
9
+ toJSONObject(): ResidencePermitDocumentTypeJSON;
10
+ }
11
+ export {};
@@ -0,0 +1,11 @@
1
+ import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
2
+ import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
3
+ import type { Region } from "../Region";
4
+ type VisaIcaoDocumentTypeJSON = IdCaptureDocumentJSON;
5
+ export declare class VisaIcao extends IdCaptureDocument {
6
+ readonly documentType: IdCaptureDocumentType;
7
+ constructor(region: Region);
8
+ get region(): Region;
9
+ toJSONObject(): VisaIcaoDocumentTypeJSON;
10
+ }
11
+ export {};
@@ -0,0 +1,51 @@
1
+ import "./scandit-web-datacapture-id-private";
2
+ import type { ModuleLoader } from "@scandit/web-datacapture-core";
3
+ import { IdCaptureWorkerManager } from "./worker/IdCaptureWorkerManager";
4
+ import { CentaurusLoader } from "scandit-web-datacapture-id-private";
5
+ export * from "./Enums";
6
+ export * from "./IdCapture";
7
+ export * from "./Listener";
8
+ export * from "./IdCaptureError";
9
+ export * from "./IdCaptureFeedback";
10
+ export * from "./IdCaptureOverlay";
11
+ export * from "./IdCaptureSettings";
12
+ export * from "./Region";
13
+ export * from "./AamvaBarcodeVerifier";
14
+ export * from "./AamvaBarcodeVerifierResult";
15
+ export * from "./RejectionReason";
16
+ export * from "./document/IdCaptureDocument";
17
+ export * from "./document/DriverLicense";
18
+ export * from "./document/HealthInsuranceCard";
19
+ export * from "./document/IdCard";
20
+ export * from "./document/Passport";
21
+ export * from "./document/RegionSpecific";
22
+ export * from "./document/RegionSpecificSubtype";
23
+ export * from "./document/ResidencePermit";
24
+ export * from "./document/VisaIcao";
25
+ export * from "./scanner/Scanner";
26
+ export * from "./scanner/FullDocumentScanner";
27
+ export * from "./scanner/SingleSideScanner";
28
+ export * from "./captured-id/BarcodeResult";
29
+ export * from "./captured-id/CapturedId";
30
+ export * from "./captured-id/DateResult";
31
+ export * from "./captured-id/DrivingLicenseCategory";
32
+ export * from "./captured-id/DrivingLicenseDetails";
33
+ export * from "./captured-id/LocalizedOnlyId";
34
+ export * from "./captured-id/MRZResult";
35
+ export * from "./captured-id/ProfessionalDrivingPermit";
36
+ export * from "./captured-id/VehicleRestriction";
37
+ export * from "./captured-id/VIZResult";
38
+ export type { Translations } from "./translations";
39
+ export interface IdCaptureLoaderOptions {
40
+ enableVIZDocuments?: boolean;
41
+ }
42
+ export declare let centaurusLoader: CentaurusLoader | undefined;
43
+ export declare let mainDataCaptureLoader: IdCaptureWorkerManager;
44
+ export declare function idCaptureLoader(options?: IdCaptureLoaderOptions): ModuleLoader;
45
+ export declare function setMainDataCaptureLoader(newLoader: IdCaptureWorkerManager): void;
46
+ /**
47
+ * @hidden
48
+ *
49
+ * Used by tests.
50
+ */
51
+ export declare function setCentaurusLoader(newLoader: CentaurusLoader): void;