@regulaforensics/document-reader-webclient 7.5.112-rc → 7.5.113-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/dist/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +167 -2
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -1401,6 +1401,67 @@ export interface AuthenticityResultAllOf {
|
|
|
1401
1401
|
*/
|
|
1402
1402
|
AuthenticityCheckList: AuthenticityCheckList;
|
|
1403
1403
|
}
|
|
1404
|
+
/**
|
|
1405
|
+
* Regula Document Reader Web API
|
|
1406
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
1407
|
+
*
|
|
1408
|
+
* The version of the OpenAPI document: 7.2.0
|
|
1409
|
+
*
|
|
1410
|
+
*
|
|
1411
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1412
|
+
* https://openapi-generator.tech
|
|
1413
|
+
* Do not edit the class manually.
|
|
1414
|
+
*/
|
|
1415
|
+
/**
|
|
1416
|
+
* Container for extracted text fields. Fields are identified by type and language
|
|
1417
|
+
* @export
|
|
1418
|
+
* @interface TBinaryData
|
|
1419
|
+
*/
|
|
1420
|
+
export interface TBinaryData {
|
|
1421
|
+
/**
|
|
1422
|
+
*
|
|
1423
|
+
* @type {number}
|
|
1424
|
+
* @memberof TBinaryData
|
|
1425
|
+
*/
|
|
1426
|
+
FieldType?: number;
|
|
1427
|
+
/**
|
|
1428
|
+
*
|
|
1429
|
+
* @type {string}
|
|
1430
|
+
* @memberof TBinaryData
|
|
1431
|
+
*/
|
|
1432
|
+
FieldName?: string;
|
|
1433
|
+
/**
|
|
1434
|
+
*
|
|
1435
|
+
* @type {number}
|
|
1436
|
+
* @memberof TBinaryData
|
|
1437
|
+
*/
|
|
1438
|
+
Buf_Length?: number;
|
|
1439
|
+
/**
|
|
1440
|
+
*
|
|
1441
|
+
* @type {string}
|
|
1442
|
+
* @memberof TBinaryData
|
|
1443
|
+
*/
|
|
1444
|
+
Buffer?: string;
|
|
1445
|
+
}
|
|
1446
|
+
/**
|
|
1447
|
+
*
|
|
1448
|
+
* @export
|
|
1449
|
+
* @interface BinaryDataResult
|
|
1450
|
+
*/
|
|
1451
|
+
export interface BinaryDataResult {
|
|
1452
|
+
/**
|
|
1453
|
+
* Count of array fields
|
|
1454
|
+
* @type {number}
|
|
1455
|
+
* @memberof BinaryDataResult
|
|
1456
|
+
*/
|
|
1457
|
+
nFields?: number;
|
|
1458
|
+
/**
|
|
1459
|
+
*
|
|
1460
|
+
* @type {Array<TBinaryData>}
|
|
1461
|
+
* @memberof BinaryDataResult
|
|
1462
|
+
*/
|
|
1463
|
+
pArrayFields?: Array<TBinaryData>;
|
|
1464
|
+
}
|
|
1404
1465
|
/**
|
|
1405
1466
|
* Regula Document Reader Web API
|
|
1406
1467
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
@@ -6924,6 +6985,110 @@ export interface LicenseResultAllOf {
|
|
|
6924
6985
|
*/
|
|
6925
6986
|
License: string;
|
|
6926
6987
|
}
|
|
6988
|
+
/**
|
|
6989
|
+
* Regula Document Reader Web API
|
|
6990
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6991
|
+
*
|
|
6992
|
+
* The version of the OpenAPI document: 7.2.0
|
|
6993
|
+
*
|
|
6994
|
+
*
|
|
6995
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6996
|
+
* https://openapi-generator.tech
|
|
6997
|
+
* Do not edit the class manually.
|
|
6998
|
+
*/
|
|
6999
|
+
/**
|
|
7000
|
+
*
|
|
7001
|
+
* @export
|
|
7002
|
+
* @interface TOriginalRFIDGraphics
|
|
7003
|
+
*/
|
|
7004
|
+
export interface TOriginalRFIDGraphics {
|
|
7005
|
+
/**
|
|
7006
|
+
*
|
|
7007
|
+
* @type {number}
|
|
7008
|
+
* @memberof TOriginalRFIDGraphics
|
|
7009
|
+
*/
|
|
7010
|
+
FieldType?: number;
|
|
7011
|
+
/**
|
|
7012
|
+
*
|
|
7013
|
+
* @type {number}
|
|
7014
|
+
* @memberof TOriginalRFIDGraphics
|
|
7015
|
+
*/
|
|
7016
|
+
GraphicsType?: number;
|
|
7017
|
+
/**
|
|
7018
|
+
*
|
|
7019
|
+
* @type {number}
|
|
7020
|
+
* @memberof TOriginalRFIDGraphics
|
|
7021
|
+
*/
|
|
7022
|
+
RFID_OriginDG?: number;
|
|
7023
|
+
/**
|
|
7024
|
+
*
|
|
7025
|
+
* @type {number}
|
|
7026
|
+
* @memberof TOriginalRFIDGraphics
|
|
7027
|
+
*/
|
|
7028
|
+
RFID_OriginDGTag?: number;
|
|
7029
|
+
/**
|
|
7030
|
+
*
|
|
7031
|
+
* @type {number}
|
|
7032
|
+
* @memberof TOriginalRFIDGraphics
|
|
7033
|
+
*/
|
|
7034
|
+
RFID_OriginTagEntry?: number;
|
|
7035
|
+
/**
|
|
7036
|
+
*
|
|
7037
|
+
* @type {number}
|
|
7038
|
+
* @memberof TOriginalRFIDGraphics
|
|
7039
|
+
*/
|
|
7040
|
+
RFID_OriginEntryView?: number;
|
|
7041
|
+
/**
|
|
7042
|
+
*
|
|
7043
|
+
* @type {number}
|
|
7044
|
+
* @memberof TOriginalRFIDGraphics
|
|
7045
|
+
*/
|
|
7046
|
+
Buf_Length?: number;
|
|
7047
|
+
/**
|
|
7048
|
+
*
|
|
7049
|
+
* @type {string}
|
|
7050
|
+
* @memberof TOriginalRFIDGraphics
|
|
7051
|
+
*/
|
|
7052
|
+
Buffer?: string;
|
|
7053
|
+
}
|
|
7054
|
+
/**
|
|
7055
|
+
*
|
|
7056
|
+
* @export
|
|
7057
|
+
* @interface OriginalGraphicsResult
|
|
7058
|
+
*/
|
|
7059
|
+
export interface OriginalGraphicsResult {
|
|
7060
|
+
/**
|
|
7061
|
+
* Count of array fields
|
|
7062
|
+
* @type {number}
|
|
7063
|
+
* @memberof OriginalGraphicsResult
|
|
7064
|
+
*/
|
|
7065
|
+
nFields?: number;
|
|
7066
|
+
/**
|
|
7067
|
+
*
|
|
7068
|
+
* @type {Array<TOriginalRFIDGraphics>}
|
|
7069
|
+
* @memberof OriginalGraphicsResult
|
|
7070
|
+
*/
|
|
7071
|
+
pArrayFields?: Array<TOriginalRFIDGraphics>;
|
|
7072
|
+
}
|
|
7073
|
+
/**
|
|
7074
|
+
*
|
|
7075
|
+
* @export
|
|
7076
|
+
* @interface RawDataResult
|
|
7077
|
+
*/
|
|
7078
|
+
export interface RawDataResult {
|
|
7079
|
+
/**
|
|
7080
|
+
* Count of array fields
|
|
7081
|
+
* @type {number}
|
|
7082
|
+
* @memberof RawDataResult
|
|
7083
|
+
*/
|
|
7084
|
+
nFields?: number;
|
|
7085
|
+
/**
|
|
7086
|
+
*
|
|
7087
|
+
* @type {Array<TBinaryData>}
|
|
7088
|
+
* @memberof RawDataResult
|
|
7089
|
+
*/
|
|
7090
|
+
pArrayFields?: Array<TBinaryData>;
|
|
7091
|
+
}
|
|
6927
7092
|
/**
|
|
6928
7093
|
*
|
|
6929
7094
|
* @export
|
|
@@ -7692,10 +7857,10 @@ export interface ContainerList {
|
|
|
7692
7857
|
Count?: number;
|
|
7693
7858
|
/**
|
|
7694
7859
|
*
|
|
7695
|
-
* @type {Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult | DocBarCodeInfo | LicenseResult | EncryptedRCLResult>}
|
|
7860
|
+
* @type {Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult | DocBarCodeInfo | LicenseResult | EncryptedRCLResult | RawDataResult | BinaryDataResult | OriginalGraphicsResult>}
|
|
7696
7861
|
* @memberof ContainerList
|
|
7697
7862
|
*/
|
|
7698
|
-
List: Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult | DocBarCodeInfo | LicenseResult | EncryptedRCLResult>;
|
|
7863
|
+
List: Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult | DocBarCodeInfo | LicenseResult | EncryptedRCLResult | RawDataResult | BinaryDataResult | OriginalGraphicsResult>;
|
|
7699
7864
|
}
|
|
7700
7865
|
/**
|
|
7701
7866
|
* Regula Document Reader Web API
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"> 0.2%",
|
|
6
6
|
"not dead"
|
|
7
7
|
],
|
|
8
|
-
"version": "7.5.
|
|
8
|
+
"version": "7.5.113-nightly",
|
|
9
9
|
"description": "Regula Document Reader js client for the browser and node.js based on axios",
|
|
10
10
|
"author": "Regula Forensics, Inc.",
|
|
11
11
|
"keywords": [
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"*.{js,ts}": "eslint --fix"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@swc/helpers": "^0.5.
|
|
55
|
-
"axios": "^1.7.
|
|
54
|
+
"@swc/helpers": "^0.5.13",
|
|
55
|
+
"axios": "^1.7.7",
|
|
56
56
|
"base64-arraybuffer": "^1.0.2",
|
|
57
57
|
"pako": "^2.1.0"
|
|
58
58
|
},
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"eslint-config-prettier": "^9.1.0",
|
|
67
67
|
"eslint-plugin-prettier": "^5.2.1",
|
|
68
68
|
"husky": "^9.1.5",
|
|
69
|
-
"lint-staged": "^15.2.
|
|
69
|
+
"lint-staged": "^15.2.10",
|
|
70
70
|
"parcel": "^2.12.0",
|
|
71
71
|
"prettier": "^3.3.3",
|
|
72
72
|
"typescript": "^5.3.2"
|