@visa-check-r/integrations 0.0.106 → 0.0.107
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.cjs.js +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -326,6 +326,7 @@ interface DocumentExtraction {
|
|
|
326
326
|
summary: string;
|
|
327
327
|
extractedFields: Record<string, string>;
|
|
328
328
|
issues: string[];
|
|
329
|
+
version: string;
|
|
329
330
|
}
|
|
330
331
|
type CrossReferenceSeverity = "info" | "warning" | "critical";
|
|
331
332
|
interface CrossReferenceFinding {
|
|
@@ -401,6 +402,7 @@ interface VisaProfileChecklistItem {
|
|
|
401
402
|
createdAt: string;
|
|
402
403
|
checklistItem?: ChecklistItem;
|
|
403
404
|
fileInfo: FileInfo;
|
|
405
|
+
version: string;
|
|
404
406
|
}
|
|
405
407
|
|
|
406
408
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -326,6 +326,7 @@ interface DocumentExtraction {
|
|
|
326
326
|
summary: string;
|
|
327
327
|
extractedFields: Record<string, string>;
|
|
328
328
|
issues: string[];
|
|
329
|
+
version: string;
|
|
329
330
|
}
|
|
330
331
|
type CrossReferenceSeverity = "info" | "warning" | "critical";
|
|
331
332
|
interface CrossReferenceFinding {
|
|
@@ -401,6 +402,7 @@ interface VisaProfileChecklistItem {
|
|
|
401
402
|
createdAt: string;
|
|
402
403
|
checklistItem?: ChecklistItem;
|
|
403
404
|
fileInfo: FileInfo;
|
|
405
|
+
version: string;
|
|
404
406
|
}
|
|
405
407
|
|
|
406
408
|
/**
|
package/dist/index.esm.js
CHANGED