@regulaforensics/vp-frontend-document-components 7.3.1788-rc → 7.3.1789-rc
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/README.md +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/main.iife.js +2 -2
- package/dist/main.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -289,6 +289,7 @@ After adding `DocumentReaderService` to the global variable, you can change the
|
|
|
289
289
|
| **parseBarcodes** | This option can be disabled to stop parsing after barcode is read. | boolean | `true` | `true`, `false` |
|
|
290
290
|
| **splitNames** | When enabled, the Surname and GivenNames fields will be divided into ft_First_Name, ft_Second_Name, ft_Third_Name, ft_Fourth_Name, ft_Last_Name fields. | boolean | `false` | `true`, `false` |
|
|
291
291
|
| **backendProcessing** | When enabled, it prepares the processing result to be sent to the backend for re-processing. Use ```service.finalizePackage();``` after receiving the processing results to send them to the backend. | Object | {} | { serviceURL: 'URL', httpHeaders: { key1: 'header1', key2: 'header2', ... } } |
|
|
292
|
+
| **generateNumericCodes** | This parameter is used to generate numeric representation for issuing state and nationality codes. | boolean | | `true`, `false` |
|
|
292
293
|
|
|
293
294
|
**Attention!** If the `multipage-processing` or `internal-scenario` attributes are set, the corresponding `multipageProcessing` and `scenario` parameters' values are ignored.
|
|
294
295
|
|
package/dist/index.d.ts
CHANGED
|
@@ -168,6 +168,7 @@ export declare class DocumentReaderProcessor {
|
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
export declare interface DocumentReaderProcessParam {
|
|
171
|
+
generateNumericCodes?: boolean;
|
|
171
172
|
returnPackageForReprocess?: boolean;
|
|
172
173
|
returnUncroppedImage?: boolean;
|
|
173
174
|
scenario?: InternalScenarios;
|