placementt-core 1.300.200 → 1.300.201
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 -24
- package/package.json +1 -1
- package/src/typeDefinitions.ts +8 -8
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1439,18 +1439,14 @@ export type ExternalEventAttendee = {
|
|
|
1439
1439
|
providerContactId: string;
|
|
1440
1440
|
students?: string[];
|
|
1441
1441
|
capacity?: number;
|
|
1442
|
-
dates?:
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
startDate: string;
|
|
1451
|
-
endDate?: string;
|
|
1452
|
-
}
|
|
1453
|
-
];
|
|
1442
|
+
dates?: {
|
|
1443
|
+
startDate: string;
|
|
1444
|
+
endDate?: string;
|
|
1445
|
+
}[];
|
|
1446
|
+
proposedDates?: {
|
|
1447
|
+
startDate: string;
|
|
1448
|
+
endDate?: string;
|
|
1449
|
+
}[];
|
|
1454
1450
|
status: "pendingInvite" | "invited" | "providerAvailable" | "finalConfirmationSent" | "providerConfirmed" | "feedbackSent";
|
|
1455
1451
|
emails: {
|
|
1456
1452
|
[k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
|
|
@@ -1553,18 +1549,14 @@ export type ExternalEventStudent = {
|
|
|
1553
1549
|
feedback: {
|
|
1554
1550
|
[key: string]: unknown;
|
|
1555
1551
|
};
|
|
1556
|
-
dates?:
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
startDate: string;
|
|
1565
|
-
endDate?: string;
|
|
1566
|
-
}
|
|
1567
|
-
];
|
|
1552
|
+
dates?: {
|
|
1553
|
+
startDate: string;
|
|
1554
|
+
endDate?: string;
|
|
1555
|
+
}[];
|
|
1556
|
+
proposedDates?: {
|
|
1557
|
+
startDate: string;
|
|
1558
|
+
endDate?: string;
|
|
1559
|
+
}[];
|
|
1568
1560
|
};
|
|
1569
1561
|
export type CareersHubInvite = {
|
|
1570
1562
|
careersHub: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1428,14 +1428,14 @@ export type ExternalEventAttendee = {
|
|
|
1428
1428
|
providerContactId: string,
|
|
1429
1429
|
students?: string[],
|
|
1430
1430
|
capacity?: number,
|
|
1431
|
-
dates?:
|
|
1431
|
+
dates?: {
|
|
1432
1432
|
startDate: string,
|
|
1433
1433
|
endDate?: string,
|
|
1434
|
-
}],
|
|
1435
|
-
proposedDates?:
|
|
1434
|
+
}[],
|
|
1435
|
+
proposedDates?: {
|
|
1436
1436
|
startDate: string,
|
|
1437
1437
|
endDate?: string,
|
|
1438
|
-
}]
|
|
1438
|
+
}[],
|
|
1439
1439
|
status: "pendingInvite"|"invited"|"providerAvailable"|"finalConfirmationSent"|"providerConfirmed"|"feedbackSent"
|
|
1440
1440
|
emails: {
|
|
1441
1441
|
[k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
|
|
@@ -1521,14 +1521,14 @@ export type ExternalEventStudent = {
|
|
|
1521
1521
|
employers?: string[],
|
|
1522
1522
|
attended?: boolean,
|
|
1523
1523
|
feedback: {[key: string]: unknown},
|
|
1524
|
-
dates?:
|
|
1524
|
+
dates?: {
|
|
1525
1525
|
startDate: string,
|
|
1526
1526
|
endDate?: string,
|
|
1527
|
-
}]
|
|
1528
|
-
proposedDates?:
|
|
1527
|
+
}[]
|
|
1528
|
+
proposedDates?: {
|
|
1529
1529
|
startDate: string,
|
|
1530
1530
|
endDate?: string,
|
|
1531
|
-
}]
|
|
1531
|
+
}[]
|
|
1532
1532
|
}
|
|
1533
1533
|
|
|
1534
1534
|
export type CareersHubInvite = {
|