@regulaforensics/document-reader-webclient 8.1.392-nightly → 8.1.394-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 +62 -5
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -13311,6 +13311,37 @@ export interface ContainerList {
|
|
|
13311
13311
|
* https://openapi-generator.tech
|
|
13312
13312
|
* Do not edit the class manually.
|
|
13313
13313
|
*/
|
|
13314
|
+
/**
|
|
13315
|
+
* Database information.
|
|
13316
|
+
* @export
|
|
13317
|
+
* @interface DeviceInfoDocumentsDatabase
|
|
13318
|
+
*/
|
|
13319
|
+
export interface DeviceInfoDocumentsDatabase {
|
|
13320
|
+
/**
|
|
13321
|
+
* Database identifier.
|
|
13322
|
+
* @type {string}
|
|
13323
|
+
* @memberof DeviceInfoDocumentsDatabase
|
|
13324
|
+
*/
|
|
13325
|
+
'id': string | null;
|
|
13326
|
+
/**
|
|
13327
|
+
* Database version.
|
|
13328
|
+
* @type {string}
|
|
13329
|
+
* @memberof DeviceInfoDocumentsDatabase
|
|
13330
|
+
*/
|
|
13331
|
+
'version': string | null;
|
|
13332
|
+
/**
|
|
13333
|
+
* Date of database creation.
|
|
13334
|
+
* @type {string}
|
|
13335
|
+
* @memberof DeviceInfoDocumentsDatabase
|
|
13336
|
+
*/
|
|
13337
|
+
'export-date': string | null;
|
|
13338
|
+
/**
|
|
13339
|
+
* Description of the database contents, such as the list of supported countries and documents.
|
|
13340
|
+
* @type {string}
|
|
13341
|
+
* @memberof DeviceInfoDocumentsDatabase
|
|
13342
|
+
*/
|
|
13343
|
+
'description': string | null;
|
|
13344
|
+
}
|
|
13314
13345
|
/**
|
|
13315
13346
|
*
|
|
13316
13347
|
* @export
|
|
@@ -13318,25 +13349,25 @@ export interface ContainerList {
|
|
|
13318
13349
|
*/
|
|
13319
13350
|
export interface DeviceInfo {
|
|
13320
13351
|
/**
|
|
13321
|
-
*
|
|
13352
|
+
* Application name.
|
|
13322
13353
|
* @type {string}
|
|
13323
13354
|
* @memberof DeviceInfo
|
|
13324
13355
|
*/
|
|
13325
13356
|
'app-name'?: string;
|
|
13326
13357
|
/**
|
|
13327
|
-
*
|
|
13358
|
+
* Product version.
|
|
13328
13359
|
* @type {string}
|
|
13329
13360
|
* @memberof DeviceInfo
|
|
13330
13361
|
*/
|
|
13331
13362
|
'version'?: string;
|
|
13332
13363
|
/**
|
|
13333
|
-
*
|
|
13364
|
+
* Unique license identifier.
|
|
13334
13365
|
* @type {string}
|
|
13335
13366
|
* @memberof DeviceInfo
|
|
13336
13367
|
*/
|
|
13337
13368
|
'license-id'?: string;
|
|
13338
13369
|
/**
|
|
13339
|
-
*
|
|
13370
|
+
* License serial number.
|
|
13340
13371
|
* @type {string}
|
|
13341
13372
|
* @memberof DeviceInfo
|
|
13342
13373
|
*/
|
|
@@ -13346,6 +13377,12 @@ export interface DeviceInfo {
|
|
|
13346
13377
|
* @type {string}
|
|
13347
13378
|
* @memberof DeviceInfo
|
|
13348
13379
|
*/
|
|
13380
|
+
'license-type'?: string;
|
|
13381
|
+
/**
|
|
13382
|
+
* License validity date.
|
|
13383
|
+
* @type {string}
|
|
13384
|
+
* @memberof DeviceInfo
|
|
13385
|
+
*/
|
|
13349
13386
|
'valid-until'?: string;
|
|
13350
13387
|
/**
|
|
13351
13388
|
*
|
|
@@ -13353,6 +13390,26 @@ export interface DeviceInfo {
|
|
|
13353
13390
|
* @memberof DeviceInfo
|
|
13354
13391
|
*/
|
|
13355
13392
|
'server-time'?: string;
|
|
13393
|
+
/**
|
|
13394
|
+
* List of supported scenarios.
|
|
13395
|
+
* @type {Array<string>}
|
|
13396
|
+
* @memberof DeviceInfo
|
|
13397
|
+
*/
|
|
13398
|
+
'supported-scenarios'?: Array<string>;
|
|
13399
|
+
/**
|
|
13400
|
+
*
|
|
13401
|
+
* @type {{ [key: string]: any; }}
|
|
13402
|
+
* @memberof DeviceInfo
|
|
13403
|
+
*/
|
|
13404
|
+
'metadata'?: {
|
|
13405
|
+
[key: string]: any;
|
|
13406
|
+
};
|
|
13407
|
+
/**
|
|
13408
|
+
*
|
|
13409
|
+
* @type {DeviceInfoDocumentsDatabase}
|
|
13410
|
+
* @memberof DeviceInfo
|
|
13411
|
+
*/
|
|
13412
|
+
'documents-database'?: DeviceInfoDocumentsDatabase;
|
|
13356
13413
|
}
|
|
13357
13414
|
/**
|
|
13358
13415
|
* Regula Document Reader Web API
|
|
@@ -14764,7 +14821,7 @@ export interface ProcessParamsRfid {
|
|
|
14764
14821
|
* @type {Array<ParsingNotificationCodes>}
|
|
14765
14822
|
* @memberof ProcessParamsRfid
|
|
14766
14823
|
*/
|
|
14767
|
-
'
|
|
14824
|
+
'paIgnoreNotificationCodes'?: Array<ParsingNotificationCodes>;
|
|
14768
14825
|
}
|
|
14769
14826
|
/**
|
|
14770
14827
|
* Regula Document Reader Web API
|
package/package.json
CHANGED