placementt-core 1.300.201 → 1.300.203
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
|
@@ -1230,6 +1230,7 @@ export type ExternalEvent = {
|
|
|
1230
1230
|
studentInformation?: string;
|
|
1231
1231
|
employerInformation?: string;
|
|
1232
1232
|
designatedStaff: string;
|
|
1233
|
+
eventRequestId?: string;
|
|
1233
1234
|
created: string;
|
|
1234
1235
|
activityId?: string;
|
|
1235
1236
|
gatsbyBenchmarks?: number[];
|
|
@@ -1365,7 +1366,7 @@ export type ExternalEventRequest = {
|
|
|
1365
1366
|
providerId: string;
|
|
1366
1367
|
startDate?: string;
|
|
1367
1368
|
endDate?: string;
|
|
1368
|
-
status: "pending" | "approved" | "declined";
|
|
1369
|
+
status: "pending" | "approved" | "linkedWithEvent" | "declined";
|
|
1369
1370
|
};
|
|
1370
1371
|
export type Alumni = {
|
|
1371
1372
|
forename: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1222,6 +1222,7 @@ export type ExternalEvent = {
|
|
|
1222
1222
|
studentInformation?: string,
|
|
1223
1223
|
employerInformation?: string
|
|
1224
1224
|
designatedStaff: string,
|
|
1225
|
+
eventRequestId?: string,
|
|
1225
1226
|
created: string,
|
|
1226
1227
|
activityId?: string,
|
|
1227
1228
|
gatsbyBenchmarks?: number[], // String array
|
|
@@ -1348,7 +1349,7 @@ export type ExternalEventRequest = {
|
|
|
1348
1349
|
providerId: string,
|
|
1349
1350
|
startDate?: string,
|
|
1350
1351
|
endDate?: string,
|
|
1351
|
-
status: "pending"|"approved"|"declined",
|
|
1352
|
+
status: "pending"|"approved"|"linkedWithEvent"|"declined",
|
|
1352
1353
|
}
|
|
1353
1354
|
|
|
1354
1355
|
|