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.
@@ -1438,7 +1438,13 @@ export type ExternalEventAttendee = {
1438
1438
  };
1439
1439
  completed: {
1440
1440
  [key in "invite" | "employerPre" | "employerDuring" | "employerPost"]: {
1441
- [key: string]: unknown;
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
- [key: string]: unknown;
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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.166",
5
+ "version": "1.300.167",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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"]: {[key: string]: unknown}},
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"]: {[key: string]: unknown}},
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 = {