@regulaforensics/react-native-document-reader-api 9.3.478-beta → 9.3.479-nightly

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.
package/index.d.ts CHANGED
@@ -2128,7 +2128,6 @@ export class BackendProcessingConfig {
2128
2128
  url?: string
2129
2129
  httpHeaders?: Record<string, string>
2130
2130
  rfidServerSideChipVerification?: boolean
2131
- mdlVerification?: boolean
2132
2131
  timeoutConnection?: number
2133
2132
 
2134
2133
  static fromJson(jsonObject?: any): BackendProcessingConfig | undefined {
@@ -2138,7 +2137,6 @@ export class BackendProcessingConfig {
2138
2137
  result.url = jsonObject["url"]
2139
2138
  result.httpHeaders = jsonObject["httpHeaders"]
2140
2139
  result.rfidServerSideChipVerification = jsonObject["rfidServerSideChipVerification"]
2141
- result.mdlVerification = jsonObject["mdlVerification"]
2142
2140
  result.timeoutConnection = jsonObject["timeoutConnection"]
2143
2141
 
2144
2142
  return result
@@ -2268,9 +2266,6 @@ export class ProcessParams {
2268
2266
  strictSecurityChecks?: boolean
2269
2267
  returnTransliteratedFields?: boolean
2270
2268
  checkCaptureProcessIntegrity?: boolean
2271
- strictExpiryDate?: boolean
2272
- debugSaveBinarySession?: boolean
2273
- checkVDS?: boolean
2274
2269
  barcodeParserType?: number
2275
2270
  perspectiveAngle?: number
2276
2271
  minDPI?: number
@@ -2357,9 +2352,6 @@ export class ProcessParams {
2357
2352
  result.strictSecurityChecks = jsonObject["strictSecurityChecks"]
2358
2353
  result.returnTransliteratedFields = jsonObject["returnTransliteratedFields"]
2359
2354
  result.checkCaptureProcessIntegrity = jsonObject["checkCaptureProcessIntegrity"]
2360
- result.strictExpiryDate = jsonObject["strictExpiryDate"]
2361
- result.debugSaveBinarySession = jsonObject["debugSaveBinarySession"]
2362
- result.checkVDS = jsonObject["checkVDS"]
2363
2355
  result.barcodeParserType = jsonObject["barcodeParserType"]
2364
2356
  result.perspectiveAngle = jsonObject["perspectiveAngle"]
2365
2357
  result.minDPI = jsonObject["minDPI"]
@@ -2480,10 +2472,6 @@ export class CustomizationColors {
2480
2472
  rfidEnableNfcDescriptionText?: number
2481
2473
  rfidEnableNfcButtonText?: number
2482
2474
  rfidEnableNfcButtonBackground?: number
2483
- nextPageIdCardFront?: number
2484
- nextPageIdCardBack?: number
2485
- nextPagePassportShift?: number
2486
- nextPagePassportFlip?: number
2487
2475
 
2488
2476
  static fromJson(jsonObject?: any): CustomizationColors | undefined {
2489
2477
  if (jsonObject == null || jsonObject == undefined) return undefined
@@ -2501,10 +2489,6 @@ export class CustomizationColors {
2501
2489
  result.rfidEnableNfcDescriptionText = jsonObject["rfidEnableNfcDescriptionText"]
2502
2490
  result.rfidEnableNfcButtonText = jsonObject["rfidEnableNfcButtonText"]
2503
2491
  result.rfidEnableNfcButtonBackground = jsonObject["rfidEnableNfcButtonBackground"]
2504
- result.nextPageIdCardFront = jsonObject["nextPageIdCardFront"]
2505
- result.nextPageIdCardBack = jsonObject["nextPageIdCardBack"]
2506
- result.nextPagePassportShift = jsonObject["nextPagePassportShift"]
2507
- result.nextPagePassportFlip = jsonObject["nextPagePassportFlip"]
2508
2492
 
2509
2493
  return result
2510
2494
  }
@@ -2534,118 +2518,15 @@ export class CustomizationFonts {
2534
2518
  }
2535
2519
 
2536
2520
  export class CustomizationImages {
2537
- helpAnimation?: string
2538
- livenessAnimation?: string
2539
- borderBackground?: string
2540
- torchButtonOn?: string
2541
- torchButtonOff?: string
2542
- captureButton?: string
2543
- switchButton?: string
2544
- closeButton?: string
2545
- multipageButton?: string
2546
2521
  rfidProcessingScreenFailureImage?: string
2547
2522
  rfidEnableNfcImage?: string
2548
- rfidDisableNfcImage?: string
2549
- mdlProcessingScreenFailureImage?: string
2550
- mdlEnableNfcImage?: string
2551
- mdlDisableNfcImage?: string
2552
- nextPageIdCardFront?: string
2553
- nextPageIdCardBack?: string
2554
- nextPagePassportShift?: string
2555
- nextPagePassportFlipStart?: string
2556
- nextPagePassportFlipClean?: string
2557
- nextPagePassportFlipTop?: string
2558
- nextPagePassportFlipBottom?: string
2559
2523
 
2560
2524
  static fromJson(jsonObject?: any): CustomizationImages | undefined {
2561
2525
  if (jsonObject == null || jsonObject == undefined) return undefined
2562
2526
  const result = new CustomizationImages
2563
2527
 
2564
- result.helpAnimation = jsonObject["helpAnimation"]
2565
- result.livenessAnimation = jsonObject["livenessAnimation"]
2566
- result.borderBackground = jsonObject["borderBackground"]
2567
- result.torchButtonOn = jsonObject["torchButtonOn"]
2568
- result.torchButtonOff = jsonObject["torchButtonOff"]
2569
- result.captureButton = jsonObject["captureButton"]
2570
- result.switchButton = jsonObject["switchButton"]
2571
- result.closeButton = jsonObject["closeButton"]
2572
- result.multipageButton = jsonObject["multipageButton"]
2573
2528
  result.rfidProcessingScreenFailureImage = jsonObject["rfidProcessingScreenFailureImage"]
2574
2529
  result.rfidEnableNfcImage = jsonObject["rfidEnableNfcImage"]
2575
- result.rfidDisableNfcImage = jsonObject["rfidDisableNfcImage"]
2576
- result.mdlProcessingScreenFailureImage = jsonObject["mdlProcessingScreenFailureImage"]
2577
- result.mdlEnableNfcImage = jsonObject["mdlEnableNfcImage"]
2578
- result.mdlDisableNfcImage = jsonObject["mdlDisableNfcImage"]
2579
- result.nextPageIdCardFront = jsonObject["nextPageIdCardFront"]
2580
- result.nextPageIdCardBack = jsonObject["nextPageIdCardBack"]
2581
- result.nextPagePassportShift = jsonObject["nextPagePassportShift"]
2582
- result.nextPagePassportFlipStart = jsonObject["nextPagePassportFlipStart"]
2583
- result.nextPagePassportFlipClean = jsonObject["nextPagePassportFlipClean"]
2584
- result.nextPagePassportFlipTop = jsonObject["nextPagePassportFlipTop"]
2585
- result.nextPagePassportFlipBottom = jsonObject["nextPagePassportFlipBottom"]
2586
-
2587
- return result
2588
- }
2589
- }
2590
-
2591
- export class CustomizationTimings {
2592
- nextPageIdCardStartDelay?: number
2593
- nextPageIdCardEndDelay?: number
2594
- nextPagePassportShiftStartDelay?: number
2595
- nextPagePassportShiftEndDelay?: number
2596
- nextPagePassportFlipStartDelay?: number
2597
- nextPagePassportFlipEndDelay?: number
2598
-
2599
- static fromJson(jsonObject?: any): CustomizationTimings | undefined {
2600
- if (jsonObject == null || jsonObject == undefined) return undefined
2601
- const result = new CustomizationTimings
2602
-
2603
- result.nextPageIdCardStartDelay = jsonObject["nextPageIdCardStartDelay"]
2604
- result.nextPageIdCardEndDelay = jsonObject["nextPageIdCardEndDelay"]
2605
- result.nextPagePassportShiftStartDelay = jsonObject["nextPagePassportShiftStartDelay"]
2606
- result.nextPagePassportShiftEndDelay = jsonObject["nextPagePassportShiftEndDelay"]
2607
- result.nextPagePassportFlipStartDelay = jsonObject["nextPagePassportFlipStartDelay"]
2608
- result.nextPagePassportFlipEndDelay = jsonObject["nextPagePassportFlipEndDelay"]
2609
-
2610
- return result
2611
- }
2612
- }
2613
-
2614
- export class CustomizationContentModes {
2615
- nextPageIdCardFront?: number
2616
- nextPageIdCardBack?: number
2617
-
2618
- static fromJson(jsonObject?: any): CustomizationContentModes | undefined {
2619
- if (jsonObject == null || jsonObject == undefined) return undefined
2620
- const result = new CustomizationContentModes
2621
-
2622
- result.nextPageIdCardFront = jsonObject["nextPageIdCardFront"]
2623
- result.nextPageIdCardBack = jsonObject["nextPageIdCardBack"]
2624
-
2625
- return result
2626
- }
2627
- }
2628
-
2629
- export class CustomizationMatrices {
2630
- nextPageIdCardFront?: number[]
2631
- nextPageIdCardBack?: number[]
2632
-
2633
- static fromJson(jsonObject?: any): CustomizationMatrices | undefined {
2634
- if (jsonObject == null || jsonObject == undefined) return undefined
2635
- const result = new CustomizationMatrices
2636
-
2637
- result.nextPageIdCardFront = []
2638
- if (jsonObject["nextPageIdCardFront"] != null) {
2639
- for (const i in jsonObject["nextPageIdCardFront"]) {
2640
- result.nextPageIdCardFront.push(jsonObject["nextPageIdCardFront"][i])
2641
- }
2642
- }
2643
- result.nextPageIdCardBack = []
2644
- if (jsonObject["nextPageIdCardBack"] != null) {
2645
- for (const i in jsonObject["nextPageIdCardBack"]) {
2646
- result.nextPageIdCardBack.push(jsonObject["nextPageIdCardBack"][i])
2647
- }
2648
- }
2649
2530
 
2650
2531
  return result
2651
2532
  }
@@ -3360,7 +3241,6 @@ export class FinalizeConfig {
3360
3241
  rawImages?: boolean
3361
3242
  video?: boolean
3362
3243
  rfidSession?: boolean
3363
- mdlSession?: boolean
3364
3244
 
3365
3245
  static fromJson(jsonObject?: any): FinalizeConfig | undefined {
3366
3246
  if (jsonObject == null || jsonObject == undefined) return undefined
@@ -3369,7 +3249,6 @@ export class FinalizeConfig {
3369
3249
  result.rawImages = jsonObject["rawImages"]
3370
3250
  result.video = jsonObject["video"]
3371
3251
  result.rfidSession = jsonObject["rfidSession"]
3372
- result.mdlSession = jsonObject["mdlSession"]
3373
3252
 
3374
3253
  return result
3375
3254
  }
@@ -3446,10 +3325,6 @@ export const CustomizationColor = {
3446
3325
  MDL_ENABLE_NFC_DESCRIPTION_TEXT: "mdlEnableNfcDescriptionText",
3447
3326
  MDL_ENABLE_NFC_BUTTON_TEXT: "mdlEnableNfcButtonText",
3448
3327
  MDL_ENABLE_NFC_BUTTON_BACKGROUND: "mdlEnableNfcButtonBackground",
3449
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
3450
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
3451
- NEXT_PAGE_PASSPORT_SHIFT: "nextPagePassportShift",
3452
- NEXT_PAGE_PASSPORT_FLIP: "nextPagePassportFlip",
3453
3328
  }
3454
3329
 
3455
3330
  export const eRFID_ErrorCodes = {
@@ -3997,9 +3872,6 @@ export const eRFID_NotificationCodes = {
3997
3872
  RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: 0x000D0000,
3998
3873
  RFID_NOTIFICATION_RI_SECTOR_ID: 0x000E0000,
3999
3874
  RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: 0x000F0000,
4000
- RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: 1048576,
4001
- RFID_NOTIFICATION_TCC_TA_RESOURCES: 1114112,
4002
- RFID_NOTIFICATION_TCC_TA_SIGNATURE: 1114113,
4003
3875
  }
4004
3876
 
4005
3877
  export const CameraPosition = {
@@ -4092,11 +3964,6 @@ export const eSignManagementAction = {
4092
3964
  smaSignData: 7,
4093
3965
  }
4094
3966
 
4095
- export const CustomizationMatrix = {
4096
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
4097
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
4098
- }
4099
-
4100
3967
  export const eMDLDeviceEngagement = {
4101
3968
  QR: 0,
4102
3969
  NFC: 1,
@@ -4239,11 +4106,6 @@ export const eMDLIntentToRetain = {
4239
4106
  TRUE: 1,
4240
4107
  }
4241
4108
 
4242
- export const CustomizationContentMode = {
4243
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
4244
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
4245
- }
4246
-
4247
4109
  export const RFIDDelegate = {
4248
4110
  NULL: 0,
4249
4111
  NO_PA: 1,
@@ -5750,11 +5612,9 @@ export const eVisualFieldType = {
5750
5612
  FT_NATIONALITY_CODE_ALPHA2: 697,
5751
5613
  FT_FIRST_ISSUE_DATE_CHECKDIGIT: 698,
5752
5614
  FT_FIRST_ISSUE_DATE_CHECKSUM: 699,
5753
- FT_EXPIRY_TIMESTAMP: 700,
5754
5615
  FT_COMMERCIAL_INDICATOR: 701,
5755
5616
  FT_NON_DOMICILED_INDICATOR: 702,
5756
5617
  FT_JURISDICTION_SPECIFIC_DATA: 703,
5757
- FT_DATA_DATE_OF_EXPIRY: 704,
5758
5618
  }
5759
5619
 
5760
5620
  export const DocReaderOrientation = {
@@ -5934,38 +5794,11 @@ export const LCID = {
5934
5794
  URDU_DETECTION: 10560,
5935
5795
  }
5936
5796
 
5937
- export const CustomizationTiming = {
5938
- NEXT_PAGE_ID_CARD_START_DELAY: "nextPageIdCardStartDelay",
5939
- NEXT_PAGE_ID_CARD_END_DELAY: "nextPageIdCardEndDelay",
5940
- NEXT_PAGE_PASSPORT_SHIFT_START_DELAY: "nextPagePassportShiftStartDelay",
5941
- NEXT_PAGE_PASSPORT_SHIFT_END_DELAY: "nextPagePassportShiftEndDelay",
5942
- NEXT_PAGE_PASSPORT_FLIP_START_DELAY: "nextPagePassportFlipStartDelay",
5943
- NEXT_PAGE_PASSPORT_FLIP_END_DELAY: "nextPagePassportFlipEndDelay",
5944
- }
5945
-
5946
5797
  export const CustomizationImage = {
5947
- HELP_ANIMATION: "helpAnimation",
5948
- LIVENESS_ANIMATION: "livenessAnimation",
5949
- BORDER_BACKGROUND: "borderBackground",
5950
- TORCH_BUTTON_ON: "torchButtonOn",
5951
- TORCH_BUTTON_OFF: "torchButtonOff",
5952
- CAPTURE_BUTTON: "captureButton",
5953
- SWITCH_BUTTON: "switchButton",
5954
- CLOSE_BUTTON: "closeButton",
5955
- MULTIPAGE_BUTTON: "multipageButton",
5956
5798
  RFID_PROCESSING_SCREEN_FAILURE_IMAGE: "rfidProcessingScreenFailureImage",
5957
5799
  RFID_ENABLE_NFC_IMAGE: "rfidEnableNfcImage",
5958
- RFID_DISABLE_NFC_IMAGE: "rfidDisableNfcImage",
5959
5800
  MDL_PROCESSING_SCREEN_FAILURE_IMAGE: "mdlProcessingScreenFailureImage",
5960
5801
  MDL_ENABLE_NFC_IMAGE: "mdlEnableNfcImage",
5961
- MDL_DISABLE_NFC_IMAGE: "mdlDisableNfcImage",
5962
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
5963
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
5964
- NEXT_PAGE_PASSPORT_SHIFT: "nextPagePassportShift",
5965
- NEXT_PAGE_PASSPORT_FLIP_START: "nextPagePassportFlipStart",
5966
- NEXT_PAGE_PASSPORT_FLIP_CLEAN: "nextPagePassportFlipClean",
5967
- NEXT_PAGE_PASSPORT_FLIP_TOP: "nextPagePassportFlipTop",
5968
- NEXT_PAGE_PASSPORT_FLIP_BOTTOM: "nextPagePassportFlipBottom",
5969
5802
  }
5970
5803
 
5971
5804
  export const DocReaderFrame = {
@@ -6030,11 +5863,9 @@ export const Enum = {
6030
5863
  BarcodeResult,
6031
5864
  eRFID_Application_Type,
6032
5865
  eSignManagementAction,
6033
- CustomizationMatrix,
6034
5866
  eMDLDeviceEngagement,
6035
5867
  eCheckDiagnose,
6036
5868
  eMDLIntentToRetain,
6037
- CustomizationContentMode,
6038
5869
  RFIDDelegate,
6039
5870
  TextProcessing,
6040
5871
  LogLevel,
@@ -6065,7 +5896,6 @@ export const Enum = {
6065
5896
  eVisualFieldType,
6066
5897
  DocReaderOrientation,
6067
5898
  LCID,
6068
- CustomizationTiming,
6069
5899
  CustomizationImage,
6070
5900
  DocReaderFrame,
6071
5901
  eMDLDocRequestPreset,
package/index.js CHANGED
@@ -1443,7 +1443,6 @@ export class BackendProcessingConfig {
1443
1443
  result.url = jsonObject["url"]
1444
1444
  result.httpHeaders = jsonObject["httpHeaders"]
1445
1445
  result.rfidServerSideChipVerification = jsonObject["rfidServerSideChipVerification"]
1446
- result.mdlVerification = jsonObject["mdlVerification"]
1447
1446
  result.timeoutConnection = jsonObject["timeoutConnection"]
1448
1447
 
1449
1448
  return result
@@ -1550,9 +1549,6 @@ export class ProcessParams {
1550
1549
  result.strictSecurityChecks = jsonObject["strictSecurityChecks"]
1551
1550
  result.returnTransliteratedFields = jsonObject["returnTransliteratedFields"]
1552
1551
  result.checkCaptureProcessIntegrity = jsonObject["checkCaptureProcessIntegrity"]
1553
- result.strictExpiryDate = jsonObject["strictExpiryDate"]
1554
- result.debugSaveBinarySession = jsonObject["debugSaveBinarySession"]
1555
- result.checkVDS = jsonObject["checkVDS"]
1556
1552
  result.barcodeParserType = jsonObject["barcodeParserType"]
1557
1553
  result.perspectiveAngle = jsonObject["perspectiveAngle"]
1558
1554
  result.minDPI = jsonObject["minDPI"]
@@ -1655,10 +1651,6 @@ export class CustomizationColors {
1655
1651
  result.rfidEnableNfcDescriptionText = jsonObject["rfidEnableNfcDescriptionText"]
1656
1652
  result.rfidEnableNfcButtonText = jsonObject["rfidEnableNfcButtonText"]
1657
1653
  result.rfidEnableNfcButtonBackground = jsonObject["rfidEnableNfcButtonBackground"]
1658
- result.nextPageIdCardFront = jsonObject["nextPageIdCardFront"]
1659
- result.nextPageIdCardBack = jsonObject["nextPageIdCardBack"]
1660
- result.nextPagePassportShift = jsonObject["nextPagePassportShift"]
1661
- result.nextPagePassportFlip = jsonObject["nextPagePassportFlip"]
1662
1654
 
1663
1655
  return result
1664
1656
  }
@@ -1685,74 +1677,8 @@ export class CustomizationImages {
1685
1677
  if (jsonObject == null) return null
1686
1678
  const result = new CustomizationImages()
1687
1679
 
1688
- result.helpAnimation = jsonObject["helpAnimation"]
1689
- result.livenessAnimation = jsonObject["livenessAnimation"]
1690
- result.borderBackground = jsonObject["borderBackground"]
1691
- result.torchButtonOn = jsonObject["torchButtonOn"]
1692
- result.torchButtonOff = jsonObject["torchButtonOff"]
1693
- result.captureButton = jsonObject["captureButton"]
1694
- result.switchButton = jsonObject["switchButton"]
1695
- result.closeButton = jsonObject["closeButton"]
1696
- result.multipageButton = jsonObject["multipageButton"]
1697
1680
  result.rfidProcessingScreenFailureImage = jsonObject["rfidProcessingScreenFailureImage"]
1698
1681
  result.rfidEnableNfcImage = jsonObject["rfidEnableNfcImage"]
1699
- result.rfidDisableNfcImage = jsonObject["rfidDisableNfcImage"]
1700
- result.mdlProcessingScreenFailureImage = jsonObject["mdlProcessingScreenFailureImage"]
1701
- result.mdlEnableNfcImage = jsonObject["mdlEnableNfcImage"]
1702
- result.mdlDisableNfcImage = jsonObject["mdlDisableNfcImage"]
1703
- result.nextPageIdCardFront = jsonObject["nextPageIdCardFront"]
1704
- result.nextPageIdCardBack = jsonObject["nextPageIdCardBack"]
1705
- result.nextPagePassportShift = jsonObject["nextPagePassportShift"]
1706
- result.nextPagePassportFlipStart = jsonObject["nextPagePassportFlipStart"]
1707
- result.nextPagePassportFlipClean = jsonObject["nextPagePassportFlipClean"]
1708
- result.nextPagePassportFlipTop = jsonObject["nextPagePassportFlipTop"]
1709
- result.nextPagePassportFlipBottom = jsonObject["nextPagePassportFlipBottom"]
1710
-
1711
- return result
1712
- }
1713
- }
1714
-
1715
- export class CustomizationTimings {
1716
- static fromJson(jsonObject) {
1717
- if (jsonObject == null) return null
1718
- const result = new CustomizationTimings()
1719
-
1720
- result.nextPageIdCardStartDelay = jsonObject["nextPageIdCardStartDelay"]
1721
- result.nextPageIdCardEndDelay = jsonObject["nextPageIdCardEndDelay"]
1722
- result.nextPagePassportShiftStartDelay = jsonObject["nextPagePassportShiftStartDelay"]
1723
- result.nextPagePassportShiftEndDelay = jsonObject["nextPagePassportShiftEndDelay"]
1724
- result.nextPagePassportFlipStartDelay = jsonObject["nextPagePassportFlipStartDelay"]
1725
- result.nextPagePassportFlipEndDelay = jsonObject["nextPagePassportFlipEndDelay"]
1726
-
1727
- return result
1728
- }
1729
- }
1730
-
1731
- export class CustomizationContentModes {
1732
- static fromJson(jsonObject) {
1733
- if (jsonObject == null) return null
1734
- const result = new CustomizationContentModes()
1735
-
1736
- result.nextPageIdCardFront = jsonObject["nextPageIdCardFront"]
1737
- result.nextPageIdCardBack = jsonObject["nextPageIdCardBack"]
1738
-
1739
- return result
1740
- }
1741
- }
1742
-
1743
- export class CustomizationMatrices {
1744
- static fromJson(jsonObject) {
1745
- if (jsonObject == null) return null
1746
- const result = new CustomizationMatrices()
1747
-
1748
- result.nextPageIdCardFront = []
1749
- if (jsonObject["nextPageIdCardFront"] != null)
1750
- for (const i in jsonObject["nextPageIdCardFront"])
1751
- result.nextPageIdCardFront.push(jsonObject["nextPageIdCardFront"][i])
1752
- result.nextPageIdCardBack = []
1753
- if (jsonObject["nextPageIdCardBack"] != null)
1754
- for (const i in jsonObject["nextPageIdCardBack"])
1755
- result.nextPageIdCardBack.push(jsonObject["nextPageIdCardBack"][i])
1756
1682
 
1757
1683
  return result
1758
1684
  }
@@ -2183,7 +2109,6 @@ export class FinalizeConfig {
2183
2109
  result.rawImages = jsonObject["rawImages"]
2184
2110
  result.video = jsonObject["video"]
2185
2111
  result.rfidSession = jsonObject["rfidSession"]
2186
- result.mdlSession = jsonObject["mdlSession"]
2187
2112
 
2188
2113
  return result
2189
2114
  }
@@ -2258,10 +2183,6 @@ export const CustomizationColor = {
2258
2183
  MDL_ENABLE_NFC_DESCRIPTION_TEXT: "mdlEnableNfcDescriptionText",
2259
2184
  MDL_ENABLE_NFC_BUTTON_TEXT: "mdlEnableNfcButtonText",
2260
2185
  MDL_ENABLE_NFC_BUTTON_BACKGROUND: "mdlEnableNfcButtonBackground",
2261
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
2262
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
2263
- NEXT_PAGE_PASSPORT_SHIFT: "nextPagePassportShift",
2264
- NEXT_PAGE_PASSPORT_FLIP: "nextPagePassportFlip",
2265
2186
  }
2266
2187
 
2267
2188
  export const eRFID_ErrorCodes = {
@@ -2809,9 +2730,6 @@ export const eRFID_NotificationCodes = {
2809
2730
  RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: 0x000D0000,
2810
2731
  RFID_NOTIFICATION_RI_SECTOR_ID: 0x000E0000,
2811
2732
  RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: 0x000F0000,
2812
- RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: 1048576,
2813
- RFID_NOTIFICATION_TCC_TA_RESOURCES: 1114112,
2814
- RFID_NOTIFICATION_TCC_TA_SIGNATURE: 1114113,
2815
2733
  }
2816
2734
 
2817
2735
  export const CameraPosition = {
@@ -2904,11 +2822,6 @@ export const eSignManagementAction = {
2904
2822
  smaSignData: 7,
2905
2823
  }
2906
2824
 
2907
- export const CustomizationMatrix = {
2908
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
2909
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
2910
- }
2911
-
2912
2825
  export const eMDLDeviceEngagement = {
2913
2826
  QR: 0,
2914
2827
  NFC: 1,
@@ -3051,11 +2964,6 @@ export const eMDLIntentToRetain = {
3051
2964
  TRUE: 1,
3052
2965
  }
3053
2966
 
3054
- export const CustomizationContentMode = {
3055
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
3056
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
3057
- }
3058
-
3059
2967
  export const RFIDDelegate = {
3060
2968
  NULL: 0,
3061
2969
  NO_PA: 1,
@@ -4562,11 +4470,9 @@ export const eVisualFieldType = {
4562
4470
  FT_NATIONALITY_CODE_ALPHA2: 697,
4563
4471
  FT_FIRST_ISSUE_DATE_CHECKDIGIT: 698,
4564
4472
  FT_FIRST_ISSUE_DATE_CHECKSUM: 699,
4565
- FT_EXPIRY_TIMESTAMP: 700,
4566
4473
  FT_COMMERCIAL_INDICATOR: 701,
4567
4474
  FT_NON_DOMICILED_INDICATOR: 702,
4568
4475
  FT_JURISDICTION_SPECIFIC_DATA: 703,
4569
- FT_DATA_DATE_OF_EXPIRY: 704,
4570
4476
  }
4571
4477
 
4572
4478
  export const DocReaderOrientation = {
@@ -4746,38 +4652,11 @@ export const LCID = {
4746
4652
  URDU_DETECTION: 10560,
4747
4653
  }
4748
4654
 
4749
- export const CustomizationTiming = {
4750
- NEXT_PAGE_ID_CARD_START_DELAY: "nextPageIdCardStartDelay",
4751
- NEXT_PAGE_ID_CARD_END_DELAY: "nextPageIdCardEndDelay",
4752
- NEXT_PAGE_PASSPORT_SHIFT_START_DELAY: "nextPagePassportShiftStartDelay",
4753
- NEXT_PAGE_PASSPORT_SHIFT_END_DELAY: "nextPagePassportShiftEndDelay",
4754
- NEXT_PAGE_PASSPORT_FLIP_START_DELAY: "nextPagePassportFlipStartDelay",
4755
- NEXT_PAGE_PASSPORT_FLIP_END_DELAY: "nextPagePassportFlipEndDelay",
4756
- }
4757
-
4758
4655
  export const CustomizationImage = {
4759
- HELP_ANIMATION: "helpAnimation",
4760
- LIVENESS_ANIMATION: "livenessAnimation",
4761
- BORDER_BACKGROUND: "borderBackground",
4762
- TORCH_BUTTON_ON: "torchButtonOn",
4763
- TORCH_BUTTON_OFF: "torchButtonOff",
4764
- CAPTURE_BUTTON: "captureButton",
4765
- SWITCH_BUTTON: "switchButton",
4766
- CLOSE_BUTTON: "closeButton",
4767
- MULTIPAGE_BUTTON: "multipageButton",
4768
4656
  RFID_PROCESSING_SCREEN_FAILURE_IMAGE: "rfidProcessingScreenFailureImage",
4769
4657
  RFID_ENABLE_NFC_IMAGE: "rfidEnableNfcImage",
4770
- RFID_DISABLE_NFC_IMAGE: "rfidDisableNfcImage",
4771
4658
  MDL_PROCESSING_SCREEN_FAILURE_IMAGE: "mdlProcessingScreenFailureImage",
4772
4659
  MDL_ENABLE_NFC_IMAGE: "mdlEnableNfcImage",
4773
- MDL_DISABLE_NFC_IMAGE: "mdlDisableNfcImage",
4774
- NEXT_PAGE_ID_CARD_FRONT: "nextPageIdCardFront",
4775
- NEXT_PAGE_ID_CARD_BACK: "nextPageIdCardBack",
4776
- NEXT_PAGE_PASSPORT_SHIFT: "nextPagePassportShift",
4777
- NEXT_PAGE_PASSPORT_FLIP_START: "nextPagePassportFlipStart",
4778
- NEXT_PAGE_PASSPORT_FLIP_CLEAN: "nextPagePassportFlipClean",
4779
- NEXT_PAGE_PASSPORT_FLIP_TOP: "nextPagePassportFlipTop",
4780
- NEXT_PAGE_PASSPORT_FLIP_BOTTOM: "nextPagePassportFlipBottom",
4781
4660
  }
4782
4661
 
4783
4662
  export const DocReaderFrame = {
@@ -4842,11 +4721,9 @@ export const Enum = {
4842
4721
  BarcodeResult,
4843
4722
  eRFID_Application_Type,
4844
4723
  eSignManagementAction,
4845
- CustomizationMatrix,
4846
4724
  eMDLDeviceEngagement,
4847
4725
  eCheckDiagnose,
4848
4726
  eMDLIntentToRetain,
4849
- CustomizationContentMode,
4850
4727
  RFIDDelegate,
4851
4728
  TextProcessing,
4852
4729
  LogLevel,
@@ -4877,7 +4754,6 @@ export const Enum = {
4877
4754
  eVisualFieldType,
4878
4755
  DocReaderOrientation,
4879
4756
  LCID,
4880
- CustomizationTiming,
4881
4757
  CustomizationImage,
4882
4758
  DocReaderFrame,
4883
4759
  eMDLDocRequestPreset,