placementt-core 1.300.166 → 1.300.167
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 +16 -2
- package/package.json +1 -1
- package/src/typeDefinitions.ts +13 -3
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1438,7 +1438,13 @@ export type ExternalEventAttendee = {
|
|
|
1438
1438
|
};
|
|
1439
1439
|
completed: {
|
|
1440
1440
|
[key in "invite" | "employerPre" | "employerDuring" | "employerPost"]: {
|
|
1441
|
-
|
|
1441
|
+
filesViewed?: string[];
|
|
1442
|
+
formsCompleted?: {
|
|
1443
|
+
[key: string]: unknown;
|
|
1444
|
+
};
|
|
1445
|
+
filesUploaded?: {
|
|
1446
|
+
[key: number]: string[];
|
|
1447
|
+
};
|
|
1442
1448
|
};
|
|
1443
1449
|
};
|
|
1444
1450
|
attended?: boolean;
|
|
@@ -1487,7 +1493,13 @@ export type ExternalEventStudent = {
|
|
|
1487
1493
|
};
|
|
1488
1494
|
completed: {
|
|
1489
1495
|
[key in "studentPre" | "studentDuring" | "studentPost"]: {
|
|
1490
|
-
|
|
1496
|
+
filesViewed?: string[];
|
|
1497
|
+
formsCompleted?: {
|
|
1498
|
+
[key: string]: unknown;
|
|
1499
|
+
};
|
|
1500
|
+
filesUploaded?: {
|
|
1501
|
+
[key: number]: string[];
|
|
1502
|
+
};
|
|
1491
1503
|
};
|
|
1492
1504
|
};
|
|
1493
1505
|
linkedEmployerId?: string;
|
|
@@ -1495,6 +1507,8 @@ export type ExternalEventStudent = {
|
|
|
1495
1507
|
feedback: {
|
|
1496
1508
|
[key: string]: unknown;
|
|
1497
1509
|
};
|
|
1510
|
+
startDate?: string;
|
|
1511
|
+
endDate?: string;
|
|
1498
1512
|
};
|
|
1499
1513
|
export type CareersHubInvite = {
|
|
1500
1514
|
careersHub: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1423,7 +1423,11 @@ export type ExternalEventAttendee = {
|
|
|
1423
1423
|
finalConfirmationSent?: string,
|
|
1424
1424
|
feedbackSent?: string,
|
|
1425
1425
|
}
|
|
1426
|
-
completed: {[key in "invite"|"employerPre"|"employerDuring"|"employerPost"]: {
|
|
1426
|
+
completed: {[key in "invite"|"employerPre"|"employerDuring"|"employerPost"]: {
|
|
1427
|
+
filesViewed?: string[],
|
|
1428
|
+
formsCompleted?: {[key: string]: unknown},
|
|
1429
|
+
filesUploaded?: {[key: number]: string[]},
|
|
1430
|
+
}},
|
|
1427
1431
|
attended?: boolean,
|
|
1428
1432
|
}
|
|
1429
1433
|
|
|
@@ -1469,10 +1473,16 @@ export type ExternalEventStudent = {
|
|
|
1469
1473
|
finalConfirmationSent?: string,
|
|
1470
1474
|
feedbackSent?: string,
|
|
1471
1475
|
}
|
|
1472
|
-
completed: {[key in "studentPre"|"studentDuring"|"studentPost"]: {
|
|
1476
|
+
completed: {[key in "studentPre"|"studentDuring"|"studentPost"]: {
|
|
1477
|
+
filesViewed?: string[],
|
|
1478
|
+
formsCompleted?: {[key: string]: unknown},
|
|
1479
|
+
filesUploaded?: {[key: number]: string[]},
|
|
1480
|
+
}},
|
|
1473
1481
|
linkedEmployerId?: string,
|
|
1474
1482
|
attended?: boolean,
|
|
1475
|
-
feedback: {[key: string]: unknown}
|
|
1483
|
+
feedback: {[key: string]: unknown},
|
|
1484
|
+
startDate?: string,
|
|
1485
|
+
endDate?: string,
|
|
1476
1486
|
}
|
|
1477
1487
|
|
|
1478
1488
|
export type CareersHubInvite = {
|