@etainabl/nodejs-sdk 1.3.30 → 1.3.32

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/index.d.cts CHANGED
@@ -557,6 +557,8 @@ interface Invoice<IDType = ObjectId | string> {
557
557
  companyId: IDType;
558
558
  userSub: string;
559
559
  validation?: any[];
560
+ automationId?: IDType;
561
+ ingestS3Key?: string;
560
562
  }
561
563
 
562
564
  interface InvoiceCaptureMetadataResult {
@@ -580,6 +582,7 @@ interface InvoiceCapture<IDType = ObjectId | string> {
580
582
  batchId: string;
581
583
  textractJobId?: string;
582
584
  textractJobStatus?: string;
585
+ textractExpiry?: Date;
583
586
  status: 'pending' | 'uploading' | 'uploaded' | 'extracting' | 'extracted' | 'capturing' | 'captured' | 'failed';
584
587
  metrics: {
585
588
  startTime: Date;
package/dist/index.d.ts CHANGED
@@ -557,6 +557,8 @@ interface Invoice<IDType = ObjectId | string> {
557
557
  companyId: IDType;
558
558
  userSub: string;
559
559
  validation?: any[];
560
+ automationId?: IDType;
561
+ ingestS3Key?: string;
560
562
  }
561
563
 
562
564
  interface InvoiceCaptureMetadataResult {
@@ -580,6 +582,7 @@ interface InvoiceCapture<IDType = ObjectId | string> {
580
582
  batchId: string;
581
583
  textractJobId?: string;
582
584
  textractJobStatus?: string;
585
+ textractExpiry?: Date;
583
586
  status: 'pending' | 'uploading' | 'uploaded' | 'extracting' | 'extracted' | 'capturing' | 'captured' | 'failed';
584
587
  metrics: {
585
588
  startTime: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etainabl/nodejs-sdk",
3
- "version": "1.3.30",
3
+ "version": "1.3.32",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.mjs",