@visa-check-r/integrations 0.0.104 → 0.0.106
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 +31 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +40 -1
- package/dist/index.d.ts +40 -1
- package/dist/index.esm.js +31 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2007,6 +2007,29 @@ var createVisaProfileChecklistItemService = (client) => ({
|
|
|
2007
2007
|
});
|
|
2008
2008
|
|
|
2009
2009
|
// src/services/profile/profile.entity.ts
|
|
2010
|
+
var crossReferenceResultQuery = [
|
|
2011
|
+
"findings",
|
|
2012
|
+
"missingSupportingDocuments",
|
|
2013
|
+
"overallConsistencyScore"
|
|
2014
|
+
];
|
|
2015
|
+
var crossReferenceFindingQuery = [
|
|
2016
|
+
"category",
|
|
2017
|
+
"description",
|
|
2018
|
+
"documentsInvolved",
|
|
2019
|
+
"severity"
|
|
2020
|
+
];
|
|
2021
|
+
var documentExtractionQuery = [
|
|
2022
|
+
"detectedDocumentType",
|
|
2023
|
+
"extractedFields",
|
|
2024
|
+
"fileName",
|
|
2025
|
+
"issues",
|
|
2026
|
+
"legibility",
|
|
2027
|
+
"matchConfidence",
|
|
2028
|
+
"score",
|
|
2029
|
+
"summary",
|
|
2030
|
+
"title",
|
|
2031
|
+
"titleMatchesContent"
|
|
2032
|
+
];
|
|
2010
2033
|
var visaApplicationStatsQuery = [
|
|
2011
2034
|
"approved",
|
|
2012
2035
|
"inProgress",
|
|
@@ -2062,7 +2085,8 @@ var documentReviewQuery = [
|
|
|
2062
2085
|
"examples",
|
|
2063
2086
|
"review",
|
|
2064
2087
|
"score",
|
|
2065
|
-
"feedback"
|
|
2088
|
+
"feedback",
|
|
2089
|
+
"extraction"
|
|
2066
2090
|
];
|
|
2067
2091
|
var readinessScoreReviewQuery = [
|
|
2068
2092
|
"createdAt",
|
|
@@ -2071,7 +2095,8 @@ var readinessScoreReviewQuery = [
|
|
|
2071
2095
|
"id",
|
|
2072
2096
|
"overallAssessment",
|
|
2073
2097
|
"overallScore",
|
|
2074
|
-
"visaProfileId"
|
|
2098
|
+
"visaProfileId",
|
|
2099
|
+
"crossReference"
|
|
2075
2100
|
];
|
|
2076
2101
|
var visaProfileQuery = [
|
|
2077
2102
|
"visaApplication",
|
|
@@ -2217,7 +2242,10 @@ var deleteConsultantAssignmentResponseFields = ["consultantAssignmentId"];
|
|
|
2217
2242
|
var getUserAverageReadinessScoreResponseFields = ["averageScore"];
|
|
2218
2243
|
var getReadinessScoreReviewResponseFields = ["readinessScoreReview"];
|
|
2219
2244
|
var _getReadinessScoreReviewResponseNestedFields = {
|
|
2220
|
-
documents: documentReviewQuery
|
|
2245
|
+
documents: documentReviewQuery,
|
|
2246
|
+
extraction: documentExtractionQuery,
|
|
2247
|
+
crossReference: crossReferenceResultQuery,
|
|
2248
|
+
findings: crossReferenceFindingQuery
|
|
2221
2249
|
};
|
|
2222
2250
|
var getReadinessScoreReviewResponseNestedFields = {
|
|
2223
2251
|
readinessScoreReview: readinessScoreReviewQuery,
|