@etainabl/nodejs-sdk 1.3.36 → 1.3.37
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -357,6 +357,7 @@ interface InvoiceValidationResults<IDType = ObjectId | string> {
|
|
|
357
357
|
invoiceValidationRuleId: IDType;
|
|
358
358
|
comment: string;
|
|
359
359
|
status: 'passed' | 'warning' | 'failed' | 'error';
|
|
360
|
+
overrideStatus?: 'passed' | 'warning' | 'failed' | 'error';
|
|
360
361
|
checkedAt: Date;
|
|
361
362
|
}
|
|
362
363
|
interface InvoiceValidation<IDType = ObjectId | string> {
|
|
@@ -366,6 +367,7 @@ interface InvoiceValidation<IDType = ObjectId | string> {
|
|
|
366
367
|
invoiceCaptureId: IDType;
|
|
367
368
|
invoiceId?: IDType;
|
|
368
369
|
batchId?: string;
|
|
370
|
+
accountIdMatches?: object;
|
|
369
371
|
companyId: IDType;
|
|
370
372
|
userSub: string;
|
|
371
373
|
}
|
|
@@ -618,6 +620,7 @@ interface InvoiceCapture<IDType = ObjectId | string> {
|
|
|
618
620
|
startTime?: Date;
|
|
619
621
|
endTime?: Date | null;
|
|
620
622
|
s3Key: string;
|
|
623
|
+
assignedUserId?: string;
|
|
621
624
|
batchId: string;
|
|
622
625
|
textractJobId?: string;
|
|
623
626
|
textractJobStatus?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ interface InvoiceValidationResults<IDType = ObjectId | string> {
|
|
|
357
357
|
invoiceValidationRuleId: IDType;
|
|
358
358
|
comment: string;
|
|
359
359
|
status: 'passed' | 'warning' | 'failed' | 'error';
|
|
360
|
+
overrideStatus?: 'passed' | 'warning' | 'failed' | 'error';
|
|
360
361
|
checkedAt: Date;
|
|
361
362
|
}
|
|
362
363
|
interface InvoiceValidation<IDType = ObjectId | string> {
|
|
@@ -366,6 +367,7 @@ interface InvoiceValidation<IDType = ObjectId | string> {
|
|
|
366
367
|
invoiceCaptureId: IDType;
|
|
367
368
|
invoiceId?: IDType;
|
|
368
369
|
batchId?: string;
|
|
370
|
+
accountIdMatches?: object;
|
|
369
371
|
companyId: IDType;
|
|
370
372
|
userSub: string;
|
|
371
373
|
}
|
|
@@ -618,6 +620,7 @@ interface InvoiceCapture<IDType = ObjectId | string> {
|
|
|
618
620
|
startTime?: Date;
|
|
619
621
|
endTime?: Date | null;
|
|
620
622
|
s3Key: string;
|
|
623
|
+
assignedUserId?: string;
|
|
621
624
|
batchId: string;
|
|
622
625
|
textractJobId?: string;
|
|
623
626
|
textractJobStatus?: string;
|