@etainabl/nodejs-sdk 1.3.68 → 1.3.70
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
|
@@ -470,6 +470,7 @@ interface CompanySettings<IDType = ObjectId | string> {
|
|
|
470
470
|
scraperCounter?: number;
|
|
471
471
|
invoiceValidationSettings?: CompanyInvoiceValidationSettings<IDType>;
|
|
472
472
|
autoInvoiceValidation?: boolean;
|
|
473
|
+
splitInvoices?: boolean;
|
|
473
474
|
}
|
|
474
475
|
interface Company<IDType = ObjectId | string> {
|
|
475
476
|
_id: IDType;
|
|
@@ -700,6 +701,7 @@ interface InvoiceCaptureMetadataResult {
|
|
|
700
701
|
dmg: number;
|
|
701
702
|
promptedAt: Date;
|
|
702
703
|
duration: number;
|
|
704
|
+
results?: any;
|
|
703
705
|
}
|
|
704
706
|
interface InvoiceCaptureMetadata {
|
|
705
707
|
totalDmg: Number;
|
|
@@ -712,6 +714,7 @@ interface InvoiceCapture<IDType = ObjectId | string> {
|
|
|
712
714
|
endTime?: Date | null;
|
|
713
715
|
s3Key: string;
|
|
714
716
|
assignedUserId?: string;
|
|
717
|
+
parentInvoiceCaptureId?: IDType | null;
|
|
715
718
|
batchId: string;
|
|
716
719
|
textractJobId?: string;
|
|
717
720
|
textractJobStatus?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -470,6 +470,7 @@ interface CompanySettings<IDType = ObjectId | string> {
|
|
|
470
470
|
scraperCounter?: number;
|
|
471
471
|
invoiceValidationSettings?: CompanyInvoiceValidationSettings<IDType>;
|
|
472
472
|
autoInvoiceValidation?: boolean;
|
|
473
|
+
splitInvoices?: boolean;
|
|
473
474
|
}
|
|
474
475
|
interface Company<IDType = ObjectId | string> {
|
|
475
476
|
_id: IDType;
|
|
@@ -700,6 +701,7 @@ interface InvoiceCaptureMetadataResult {
|
|
|
700
701
|
dmg: number;
|
|
701
702
|
promptedAt: Date;
|
|
702
703
|
duration: number;
|
|
704
|
+
results?: any;
|
|
703
705
|
}
|
|
704
706
|
interface InvoiceCaptureMetadata {
|
|
705
707
|
totalDmg: Number;
|
|
@@ -712,6 +714,7 @@ interface InvoiceCapture<IDType = ObjectId | string> {
|
|
|
712
714
|
endTime?: Date | null;
|
|
713
715
|
s3Key: string;
|
|
714
716
|
assignedUserId?: string;
|
|
717
|
+
parentInvoiceCaptureId?: IDType | null;
|
|
715
718
|
batchId: string;
|
|
716
719
|
textractJobId?: string;
|
|
717
720
|
textractJobStatus?: string;
|