@regulaforensics/document-reader-webclient 7.5.177-nightly → 7.5.178-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/lib/index.d.ts CHANGED
@@ -7830,6 +7830,48 @@ export interface DocumentTypesCandidates {
7830
7830
  */
7831
7831
  Candidates?: Array<OneCandidate>;
7832
7832
  }
7833
+ /**
7834
+ * Regula Document Reader Web API
7835
+ * 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
7836
+ *
7837
+ * The version of the OpenAPI document: 7.2.0
7838
+ *
7839
+ *
7840
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7841
+ * https://openapi-generator.tech
7842
+ * Do not edit the class manually.
7843
+ */
7844
+ /**
7845
+ * Document database information
7846
+ * @export
7847
+ * @interface DocumentsDatabase
7848
+ */
7849
+ export interface DocumentsDatabase {
7850
+ /**
7851
+ * Document database description
7852
+ * @type {string}
7853
+ * @memberof DocumentsDatabase
7854
+ */
7855
+ Description?: string;
7856
+ /**
7857
+ * Date the document database was created
7858
+ * @type {string}
7859
+ * @memberof DocumentsDatabase
7860
+ */
7861
+ ExportDate?: string;
7862
+ /**
7863
+ * Document database identifier
7864
+ * @type {string}
7865
+ * @memberof DocumentsDatabase
7866
+ */
7867
+ ID?: string;
7868
+ /**
7869
+ * Document database version
7870
+ * @type {string}
7871
+ * @memberof DocumentsDatabase
7872
+ */
7873
+ Version?: string;
7874
+ }
7833
7875
  /**
7834
7876
  * Regula Document Reader Web API
7835
7877
  * 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
@@ -8326,17 +8368,6 @@ export enum ProcessingStatus {
8326
8368
  */
8327
8369
  TIMEOUT = 2
8328
8370
  }
8329
- /**
8330
- * Regula Document Reader Web API
8331
- * 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
8332
- *
8333
- * The version of the OpenAPI document: 7.2.0
8334
- *
8335
- *
8336
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8337
- * https://openapi-generator.tech
8338
- * Do not edit the class manually.
8339
- */
8340
8371
  /**
8341
8372
  *
8342
8373
  * @export
@@ -8344,29 +8375,53 @@ export enum ProcessingStatus {
8344
8375
  */
8345
8376
  export interface TransactionInfo {
8346
8377
  /**
8347
- *
8378
+ * Computer name
8348
8379
  * @type {string}
8349
8380
  * @memberof TransactionInfo
8350
8381
  */
8351
8382
  ComputerName?: string;
8352
8383
  /**
8353
- *
8384
+ * Date and time
8354
8385
  * @type {string}
8355
8386
  * @memberof TransactionInfo
8356
8387
  */
8357
8388
  DateTime?: string;
8358
8389
  /**
8359
8390
  *
8391
+ * @type {DocumentsDatabase}
8392
+ * @memberof TransactionInfo
8393
+ */
8394
+ DocumentsDatabase?: DocumentsDatabase;
8395
+ /**
8396
+ * System information
8397
+ * @type {string}
8398
+ * @memberof TransactionInfo
8399
+ */
8400
+ SystemInfo?: string;
8401
+ /**
8402
+ * Transaction tag
8403
+ * @type {string}
8404
+ * @memberof TransactionInfo
8405
+ */
8406
+ Tag?: string;
8407
+ /**
8408
+ * Transaction identifier
8360
8409
  * @type {string}
8361
8410
  * @memberof TransactionInfo
8362
8411
  */
8363
8412
  TransactionID?: string;
8364
8413
  /**
8365
- *
8414
+ * User name
8366
8415
  * @type {string}
8367
8416
  * @memberof TransactionInfo
8368
8417
  */
8369
8418
  UserName?: string;
8419
+ /**
8420
+ * SDK version
8421
+ * @type {string}
8422
+ * @memberof TransactionInfo
8423
+ */
8424
+ Version?: string;
8370
8425
  }
8371
8426
  /**
8372
8427
  *
@@ -10131,6 +10186,12 @@ export interface ProcessParams {
10131
10186
  * @memberof ProcessParams
10132
10187
  */
10133
10188
  strictBarcodeDigitalSignatureCheck?: boolean;
10189
+ /**
10190
+ * Select the longest value from the different value sources and write it to the value field if comparison is done successfully. The parameter applies this logic to the personal names, such as given name, surname, surname and given name, middle name and etc.
10191
+ * @type {boolean}
10192
+ * @memberof ProcessParams
10193
+ */
10194
+ selectLongestNames?: boolean;
10134
10195
  }
10135
10196
  /**
10136
10197
  *
@@ -10419,6 +10480,12 @@ export interface TransactionProcessRequest {
10419
10480
  passBackObject?: {
10420
10481
  [key: string]: object;
10421
10482
  };
10483
+ /**
10484
+ * Digital Travel Credential (DTC-VC) data in base64 format for processing
10485
+ * @type {string}
10486
+ * @memberof TransactionProcessRequest
10487
+ */
10488
+ dtc?: string;
10422
10489
  }
10423
10490
  export class TextFieldExt implements TextField {
10424
10491
  fieldType: TextFieldType;
@@ -10543,6 +10610,7 @@ export class Response {
10543
10610
  status?: Status;
10544
10611
  text?: TextExt;
10545
10612
  images?: ImagesExt;
10613
+ TransactionInfo: TransactionInfo;
10546
10614
  lowLvlResponse: LowLvlResponse;
10547
10615
  rawResponse: ProcessResponse | InlineResponse2001;
10548
10616
  constructor(original: ProcessResponse | InlineResponse2001);
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "> 0.2%",
6
6
  "not dead"
7
7
  ],
8
- "version": "7.5.177-nightly",
8
+ "version": "7.5.178-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": [