placementt-core 1.400.262 → 1.400.264
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
|
@@ -1432,10 +1432,11 @@ export type ExternalEventRequest = {
|
|
|
1432
1432
|
year?: string[];
|
|
1433
1433
|
requestedBy: "employer" | "school";
|
|
1434
1434
|
email?: string;
|
|
1435
|
+
created: string;
|
|
1435
1436
|
consent: boolean;
|
|
1436
1437
|
files?: FileList;
|
|
1437
1438
|
oId: string;
|
|
1438
|
-
|
|
1439
|
+
instituteId?: string;
|
|
1439
1440
|
providerContactId?: string;
|
|
1440
1441
|
providerId?: string;
|
|
1441
1442
|
dates?: {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1414,10 +1414,11 @@ export type ExternalEventRequest = {
|
|
|
1414
1414
|
year?: string[],
|
|
1415
1415
|
requestedBy: "employer"|"school",
|
|
1416
1416
|
email?: string,
|
|
1417
|
+
created: string,
|
|
1417
1418
|
consent: boolean,
|
|
1418
1419
|
files?: FileList,
|
|
1419
1420
|
oId: string,
|
|
1420
|
-
|
|
1421
|
+
instituteId?: string, // School requesting it.
|
|
1421
1422
|
providerContactId?: string,
|
|
1422
1423
|
providerId?: string,
|
|
1423
1424
|
dates?: {startDate: string, endDate?: string}[],
|