@regulaforensics/document-reader-webclient 7.5.93-nightly → 7.5.96-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 +33 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10448,5 +10448,38 @@ export class DocumentReaderApi {
|
|
|
10448
10448
|
* @throws {RequiredError}
|
|
10449
10449
|
*/
|
|
10450
10450
|
getReprocessTransactionResult(transactionId: number, withImages?: boolean, options?: any): Promise<Response>;
|
|
10451
|
+
/**
|
|
10452
|
+
*
|
|
10453
|
+
* @summary Get transactions by tag
|
|
10454
|
+
* @param {number} tagId Tag id
|
|
10455
|
+
* @param {*} [options] Override http request option.
|
|
10456
|
+
* @throws {RequiredError}
|
|
10457
|
+
*/
|
|
10458
|
+
getTransactionsByTag(tagId: number, options?: any): Promise<AxiosResponse<import("models").GetTransactionsByTagResponse[], any>>;
|
|
10459
|
+
/**
|
|
10460
|
+
*
|
|
10461
|
+
* @summary Delete Reprocess transactions by tag
|
|
10462
|
+
* @param {number} tagId Tag id
|
|
10463
|
+
* @param {*} [options] Override http request option.
|
|
10464
|
+
* @throws {RequiredError}
|
|
10465
|
+
*/
|
|
10466
|
+
deleteReprocessTransactionsByTag(tagId: number, options?: any): Promise<AxiosResponse<object, any>>;
|
|
10467
|
+
/**
|
|
10468
|
+
*
|
|
10469
|
+
* @summary Get Reprocess transaction file
|
|
10470
|
+
* @param {number} transactionId Transaction id
|
|
10471
|
+
* @param {string} name File name
|
|
10472
|
+
* @param {*} [options] Override http request option.
|
|
10473
|
+
* @throws {RequiredError}
|
|
10474
|
+
*/
|
|
10475
|
+
getReprocessTransactionFile(transactionId: number, name: string, options?: any): Promise<AxiosResponse<any, any>>;
|
|
10476
|
+
/**
|
|
10477
|
+
*
|
|
10478
|
+
* @summary Get Reprocess transaction data
|
|
10479
|
+
* @param {number} transactionId Transaction id
|
|
10480
|
+
* @param {*} [options] Override http request option.
|
|
10481
|
+
* @throws {RequiredError}
|
|
10482
|
+
*/
|
|
10483
|
+
getReprocessTransactionData(transactionId: number, options?: any): Promise<AxiosResponse<import("models").TransactionProcessGetResponse, any>>;
|
|
10451
10484
|
}
|
|
10452
10485
|
export function requestToBaseRequest(request: ProcessRequestExt): ProcessRequest;
|
package/package.json
CHANGED