@visa-check-r/integrations 0.0.1 → 0.0.2
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 +11 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +16 -3
- package/dist/index.d.ts +16 -3
- package/dist/index.esm.js +11 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -622,6 +622,7 @@ var checklistItemSchema = {
|
|
|
622
622
|
};
|
|
623
623
|
|
|
624
624
|
// src/services/checklist/checklist.entity.ts
|
|
625
|
+
var fileInfoQuery = ["name", "url", "mimeType", "size"];
|
|
625
626
|
var checklistItemQuery = [
|
|
626
627
|
"id",
|
|
627
628
|
"title",
|
|
@@ -639,7 +640,9 @@ var visaProfileChecklistItemQuery = [
|
|
|
639
640
|
"checklistItemId",
|
|
640
641
|
"value",
|
|
641
642
|
"isApproved",
|
|
642
|
-
"createdAt"
|
|
643
|
+
"createdAt",
|
|
644
|
+
"checklistItem",
|
|
645
|
+
"fileInfo"
|
|
643
646
|
];
|
|
644
647
|
|
|
645
648
|
// src/services/checklist/types/checklist-item.type.ts
|
|
@@ -774,13 +777,19 @@ var visaProfileChecklistItemSchema = {
|
|
|
774
777
|
|
|
775
778
|
// src/services/checklist/types/visaprofile-checklist-item.type.ts
|
|
776
779
|
var getVisaProfileChecklistItemResponse = ["visaProfileChecklistItem"];
|
|
780
|
+
var _getVisaProfileChecklistItemResponseNestedFields = {
|
|
781
|
+
checklistItem: checklistItemQuery,
|
|
782
|
+
fileInfo: fileInfoQuery
|
|
783
|
+
};
|
|
777
784
|
var getVisaProfileChecklistItemResponseNestedFields = {
|
|
785
|
+
..._getVisaProfileChecklistItemResponseNestedFields,
|
|
778
786
|
visaProfileChecklistItem: visaProfileChecklistItemQuery
|
|
779
787
|
};
|
|
780
788
|
var listVisaProfileChecklistItemResponse = [
|
|
781
789
|
"visaProfileChecklistItems"
|
|
782
790
|
];
|
|
783
791
|
var listVisaProfileChecklistItemResponseNestedFields = {
|
|
792
|
+
..._getVisaProfileChecklistItemResponseNestedFields,
|
|
784
793
|
visaProfileChecklistItems: visaProfileChecklistItemQuery
|
|
785
794
|
};
|
|
786
795
|
var createVisaProfileChecklistItemResponse = getVisaProfileChecklistItemResponse;
|
|
@@ -1475,6 +1484,7 @@ exports.GraphQLClient = GraphQLClient;
|
|
|
1475
1484
|
exports.NetworkError = NetworkError;
|
|
1476
1485
|
exports.SdkError = SdkError;
|
|
1477
1486
|
exports._getConsultantAssignmentResponseNestedFields = _getConsultantAssignmentResponseNestedFields;
|
|
1487
|
+
exports._getVisaProfileChecklistItemResponseNestedFields = _getVisaProfileChecklistItemResponseNestedFields;
|
|
1478
1488
|
exports._getVisaProfileResponseNestedFields = _getVisaProfileResponseNestedFields;
|
|
1479
1489
|
exports.compose = compose;
|
|
1480
1490
|
exports.createAuthService = createAuthService;
|