@regulaforensics/vp-frontend-document-components 7.2.1609-nightly → 7.2.1615-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/README.md +7 -6
- package/dist/main.js +1 -1
- package/esm/main.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -931,12 +931,13 @@ You can send the results to the backend for further processing:
|
|
|
931
931
|
```javascript
|
|
932
932
|
window.RegulaDocumentSDK.recognizerProcessParam = {
|
|
933
933
|
processParam: {
|
|
934
|
-
backendProcessing:
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
934
|
+
backendProcessing: {
|
|
935
|
+
serviceURL: 'YOUR_SERVICE_URL',
|
|
936
|
+
httpHeaders: { // you can set http headers if necessary
|
|
937
|
+
key1: 'header1',
|
|
938
|
+
key2: 'header2',
|
|
939
|
+
key3: 'header3'
|
|
940
|
+
}
|
|
940
941
|
}
|
|
941
942
|
},
|
|
942
943
|
};
|