@regulaforensics/document-reader-webclient 7.5.94-nightly → 7.5.98-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 +60 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1271,6 +1271,12 @@ export interface AuthenticityCheckResultItem {
|
|
|
1271
1271
|
* @memberof AuthenticityCheckResultItem
|
|
1272
1272
|
*/
|
|
1273
1273
|
ElementDiagnose?: CheckDiagnose;
|
|
1274
|
+
/**
|
|
1275
|
+
*
|
|
1276
|
+
* @type {number}
|
|
1277
|
+
* @memberof AuthenticityCheckResultItem
|
|
1278
|
+
*/
|
|
1279
|
+
PercentValue?: number;
|
|
1274
1280
|
}
|
|
1275
1281
|
/**
|
|
1276
1282
|
*
|
|
@@ -8292,6 +8298,27 @@ export interface InlineResponse2001 {
|
|
|
8292
8298
|
*/
|
|
8293
8299
|
CoreLibResultCode?: number;
|
|
8294
8300
|
}
|
|
8301
|
+
/**
|
|
8302
|
+
*
|
|
8303
|
+
* @export
|
|
8304
|
+
* @interface ListTransactionsByTagResponse
|
|
8305
|
+
*/
|
|
8306
|
+
export interface ListTransactionsByTagResponse {
|
|
8307
|
+
/**
|
|
8308
|
+
*
|
|
8309
|
+
* @type {Array<GetTransactionsByTagResponse>}
|
|
8310
|
+
* @memberof ListTransactionsByTagResponse
|
|
8311
|
+
*/
|
|
8312
|
+
items?: Array<GetTransactionsByTagResponse>;
|
|
8313
|
+
/**
|
|
8314
|
+
*
|
|
8315
|
+
* @type {{ [key: string]: object; }}
|
|
8316
|
+
* @memberof ListTransactionsByTagResponse
|
|
8317
|
+
*/
|
|
8318
|
+
metadata?: {
|
|
8319
|
+
[key: string]: object;
|
|
8320
|
+
};
|
|
8321
|
+
}
|
|
8295
8322
|
/**
|
|
8296
8323
|
* Regula Document Reader Web API
|
|
8297
8324
|
* 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
|
|
@@ -10448,5 +10475,38 @@ export class DocumentReaderApi {
|
|
|
10448
10475
|
* @throws {RequiredError}
|
|
10449
10476
|
*/
|
|
10450
10477
|
getReprocessTransactionResult(transactionId: number, withImages?: boolean, options?: any): Promise<Response>;
|
|
10478
|
+
/**
|
|
10479
|
+
*
|
|
10480
|
+
* @summary Get transactions by tag
|
|
10481
|
+
* @param {number} tagId Tag id
|
|
10482
|
+
* @param {*} [options] Override http request option.
|
|
10483
|
+
* @throws {RequiredError}
|
|
10484
|
+
*/
|
|
10485
|
+
getTransactionsByTag(tagId: string, options?: any): Promise<AxiosResponse<ListTransactionsByTagResponse>>;
|
|
10486
|
+
/**
|
|
10487
|
+
*
|
|
10488
|
+
* @summary Delete Reprocess transactions by tag
|
|
10489
|
+
* @param {number} tagId Tag id
|
|
10490
|
+
* @param {*} [options] Override http request option.
|
|
10491
|
+
* @throws {RequiredError}
|
|
10492
|
+
*/
|
|
10493
|
+
deleteReprocessTransactionsByTag(tagId: number, options?: any): Promise<AxiosResponse<object, any>>;
|
|
10494
|
+
/**
|
|
10495
|
+
*
|
|
10496
|
+
* @summary Get Reprocess transaction file
|
|
10497
|
+
* @param {number} transactionId Transaction id
|
|
10498
|
+
* @param {string} name File name
|
|
10499
|
+
* @param {*} [options] Override http request option.
|
|
10500
|
+
* @throws {RequiredError}
|
|
10501
|
+
*/
|
|
10502
|
+
getReprocessTransactionFile(transactionId: number, name: string, options?: any): Promise<AxiosResponse<any, any>>;
|
|
10503
|
+
/**
|
|
10504
|
+
*
|
|
10505
|
+
* @summary Get Reprocess transaction data
|
|
10506
|
+
* @param {number} transactionId Transaction id
|
|
10507
|
+
* @param {*} [options] Override http request option.
|
|
10508
|
+
* @throws {RequiredError}
|
|
10509
|
+
*/
|
|
10510
|
+
getReprocessTransactionData(transactionId: number, options?: any): Promise<AxiosResponse<TransactionProcessGetResponse, any>>;
|
|
10451
10511
|
}
|
|
10452
10512
|
export function requestToBaseRequest(request: ProcessRequestExt): ProcessRequest;
|
package/package.json
CHANGED