@visa-check-r/integrations 0.0.35 → 0.0.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.mts CHANGED
@@ -139,6 +139,7 @@ interface ConsultantAssignment {
139
139
  visaProfileId: string;
140
140
  consultantId: string;
141
141
  consultantAcceptance: BooleanLiteral;
142
+ consultantRejection: BooleanLiteral;
142
143
  changeRequest?: BooleanLiteral;
143
144
  createdAt: string;
144
145
  assignmentStatus: "decline" | "accept";
@@ -875,6 +876,7 @@ interface ListVisaProfileChecklistItemsRequest {
875
876
  search?: string;
876
877
  visaProfileChecklistItemIds?: string[];
877
878
  visaProfileChecklistItem?: Partial<VisaProfileChecklistItem>;
879
+ checklistItem?: Partial<ChecklistItem>;
878
880
  }
879
881
  interface ListVisaProfileChecklistItemsResponse {
880
882
  visaProfileChecklistItems: VisaProfileChecklistItem[];
package/dist/index.d.ts CHANGED
@@ -139,6 +139,7 @@ interface ConsultantAssignment {
139
139
  visaProfileId: string;
140
140
  consultantId: string;
141
141
  consultantAcceptance: BooleanLiteral;
142
+ consultantRejection: BooleanLiteral;
142
143
  changeRequest?: BooleanLiteral;
143
144
  createdAt: string;
144
145
  assignmentStatus: "decline" | "accept";
@@ -875,6 +876,7 @@ interface ListVisaProfileChecklistItemsRequest {
875
876
  search?: string;
876
877
  visaProfileChecklistItemIds?: string[];
877
878
  visaProfileChecklistItem?: Partial<VisaProfileChecklistItem>;
879
+ checklistItem?: Partial<ChecklistItem>;
878
880
  }
879
881
  interface ListVisaProfileChecklistItemsResponse {
880
882
  visaProfileChecklistItems: VisaProfileChecklistItem[];
package/dist/index.esm.js CHANGED
@@ -1342,8 +1342,8 @@ var visaProfileChecklistItemSchema = {
1342
1342
  }
1343
1343
  `,
1344
1344
  listVisaProfileChecklistItems: (query) => `
1345
- query listVisaProfileChecklistItems($limit: Int!, $skip: Int!, $search: String, $visaProfileChecklistItemIds: [String], $visaProfileChecklistItem: VisaProfileChecklistItemInput) {
1346
- listVisaProfileChecklistItems(limit: $limit, skip: $skip, search: $search, visaProfileChecklistItemIds: $visaProfileChecklistItemIds, visaProfileChecklistItem: $visaProfileChecklistItem) {
1345
+ query listVisaProfileChecklistItems($limit: Int!, $skip: Int!, $search: String, $visaProfileChecklistItemIds: [String], $visaProfileChecklistItem: VisaProfileChecklistItemInput, $checklistItem: ChecklistItemInput) {
1346
+ listVisaProfileChecklistItems(limit: $limit, skip: $skip, search: $search, visaProfileChecklistItemIds: $visaProfileChecklistItemIds, visaProfileChecklistItem: $visaProfileChecklistItem, checklistItem: $checklistItem) {
1347
1347
  ${query}
1348
1348
  }
1349
1349
  }
@@ -1543,6 +1543,7 @@ var consultantAssignmentQuery = [
1543
1543
  "consultant",
1544
1544
  "consultantId",
1545
1545
  "consultantAcceptance",
1546
+ "consultantRejection",
1546
1547
  "createdAt",
1547
1548
  "finalReview",
1548
1549
  "finalReview",