@regulaforensics/document-reader-webclient 7.5.96-nightly → 7.5.99-rc
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 +29 -2
- 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
|
|
@@ -10455,7 +10482,7 @@ export class DocumentReaderApi {
|
|
|
10455
10482
|
* @param {*} [options] Override http request option.
|
|
10456
10483
|
* @throws {RequiredError}
|
|
10457
10484
|
*/
|
|
10458
|
-
getTransactionsByTag(tagId:
|
|
10485
|
+
getTransactionsByTag(tagId: string, options?: any): Promise<AxiosResponse<ListTransactionsByTagResponse>>;
|
|
10459
10486
|
/**
|
|
10460
10487
|
*
|
|
10461
10488
|
* @summary Delete Reprocess transactions by tag
|
|
@@ -10480,6 +10507,6 @@ export class DocumentReaderApi {
|
|
|
10480
10507
|
* @param {*} [options] Override http request option.
|
|
10481
10508
|
* @throws {RequiredError}
|
|
10482
10509
|
*/
|
|
10483
|
-
getReprocessTransactionData(transactionId: number, options?: any): Promise<AxiosResponse<
|
|
10510
|
+
getReprocessTransactionData(transactionId: number, options?: any): Promise<AxiosResponse<TransactionProcessGetResponse, any>>;
|
|
10484
10511
|
}
|
|
10485
10512
|
export function requestToBaseRequest(request: ProcessRequestExt): ProcessRequest;
|
package/package.json
CHANGED