@visa-check-r/integrations 0.0.33 → 0.0.35
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 +3 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +3 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -138,12 +138,15 @@ interface ConsultantAssignment {
|
|
|
138
138
|
id: string;
|
|
139
139
|
visaProfileId: string;
|
|
140
140
|
consultantId: string;
|
|
141
|
+
consultantAcceptance: BooleanLiteral;
|
|
141
142
|
changeRequest?: BooleanLiteral;
|
|
142
143
|
createdAt: string;
|
|
143
144
|
assignmentStatus: "decline" | "accept";
|
|
144
145
|
finalReview?: string;
|
|
145
146
|
finalReviewDate?: string;
|
|
146
147
|
adminApproval?: BooleanLiteral;
|
|
148
|
+
adminComment?: string;
|
|
149
|
+
adminCommentDate?: string;
|
|
147
150
|
consultant?: User;
|
|
148
151
|
}
|
|
149
152
|
interface VisaProfileReviewComment {
|
package/dist/index.d.ts
CHANGED
|
@@ -138,12 +138,15 @@ interface ConsultantAssignment {
|
|
|
138
138
|
id: string;
|
|
139
139
|
visaProfileId: string;
|
|
140
140
|
consultantId: string;
|
|
141
|
+
consultantAcceptance: BooleanLiteral;
|
|
141
142
|
changeRequest?: BooleanLiteral;
|
|
142
143
|
createdAt: string;
|
|
143
144
|
assignmentStatus: "decline" | "accept";
|
|
144
145
|
finalReview?: string;
|
|
145
146
|
finalReviewDate?: string;
|
|
146
147
|
adminApproval?: BooleanLiteral;
|
|
148
|
+
adminComment?: string;
|
|
149
|
+
adminCommentDate?: string;
|
|
147
150
|
consultant?: User;
|
|
148
151
|
}
|
|
149
152
|
interface VisaProfileReviewComment {
|
package/dist/index.esm.js
CHANGED
|
@@ -1536,10 +1536,13 @@ var visaApplicationQuery = [
|
|
|
1536
1536
|
];
|
|
1537
1537
|
var consultantAssignmentQuery = [
|
|
1538
1538
|
"adminApproval",
|
|
1539
|
+
"adminComment",
|
|
1540
|
+
"adminCommentDate",
|
|
1539
1541
|
"assignmentStatus",
|
|
1540
1542
|
"changeRequest",
|
|
1541
1543
|
"consultant",
|
|
1542
1544
|
"consultantId",
|
|
1545
|
+
"consultantAcceptance",
|
|
1543
1546
|
"createdAt",
|
|
1544
1547
|
"finalReview",
|
|
1545
1548
|
"finalReview",
|