placementt-core 1.300.165 → 1.300.166
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/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1436,13 +1436,12 @@ export type ExternalEventAttendee = {
|
|
|
1436
1436
|
finalConfirmationSent?: string;
|
|
1437
1437
|
feedbackSent?: string;
|
|
1438
1438
|
};
|
|
1439
|
-
|
|
1440
|
-
[key
|
|
1439
|
+
completed: {
|
|
1440
|
+
[key in "invite" | "employerPre" | "employerDuring" | "employerPost"]: {
|
|
1441
|
+
[key: string]: unknown;
|
|
1442
|
+
};
|
|
1441
1443
|
};
|
|
1442
1444
|
attended?: boolean;
|
|
1443
|
-
feedbackDocs?: {
|
|
1444
|
-
[key: string]: unknown;
|
|
1445
|
-
};
|
|
1446
1445
|
};
|
|
1447
1446
|
export type ExternalEventCareersSchool = {
|
|
1448
1447
|
oId: string;
|
|
@@ -1486,6 +1485,11 @@ export type ExternalEventStudent = {
|
|
|
1486
1485
|
finalConfirmationSent?: string;
|
|
1487
1486
|
feedbackSent?: string;
|
|
1488
1487
|
};
|
|
1488
|
+
completed: {
|
|
1489
|
+
[key in "studentPre" | "studentDuring" | "studentPost"]: {
|
|
1490
|
+
[key: string]: unknown;
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1489
1493
|
linkedEmployerId?: string;
|
|
1490
1494
|
attended?: boolean;
|
|
1491
1495
|
feedback: {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1423,9 +1423,8 @@ export type ExternalEventAttendee = {
|
|
|
1423
1423
|
finalConfirmationSent?: string,
|
|
1424
1424
|
feedbackSent?: string,
|
|
1425
1425
|
}
|
|
1426
|
-
|
|
1426
|
+
completed: {[key in "invite"|"employerPre"|"employerDuring"|"employerPost"]: {[key: string]: unknown}},
|
|
1427
1427
|
attended?: boolean,
|
|
1428
|
-
feedbackDocs?: {[key: string]: unknown}
|
|
1429
1428
|
}
|
|
1430
1429
|
|
|
1431
1430
|
|
|
@@ -1470,6 +1469,7 @@ export type ExternalEventStudent = {
|
|
|
1470
1469
|
finalConfirmationSent?: string,
|
|
1471
1470
|
feedbackSent?: string,
|
|
1472
1471
|
}
|
|
1472
|
+
completed: {[key in "studentPre"|"studentDuring"|"studentPost"]: {[key: string]: unknown}},
|
|
1473
1473
|
linkedEmployerId?: string,
|
|
1474
1474
|
attended?: boolean,
|
|
1475
1475
|
feedback: {[key: string]: unknown}
|