placementt-core 1.300.199 → 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.
@@ -1363,6 +1363,8 @@ export type ExternalEventRequest = {
1363
1363
  schoolId?: string;
1364
1364
  providerContactId: string;
1365
1365
  providerId: string;
1366
+ startDate?: string;
1367
+ endDate?: string;
1366
1368
  status: "pending" | "approved" | "declined";
1367
1369
  };
1368
1370
  export type Alumni = {
@@ -1437,18 +1439,14 @@ export type ExternalEventAttendee = {
1437
1439
  providerContactId: string;
1438
1440
  students?: string[];
1439
1441
  capacity?: number;
1440
- dates?: [
1441
- {
1442
- startDate: string;
1443
- endDate?: string;
1444
- }
1445
- ];
1446
- proposedDates?: [
1447
- {
1448
- startDate: string;
1449
- endDate?: string;
1450
- }
1451
- ];
1442
+ dates?: {
1443
+ startDate: string;
1444
+ endDate?: string;
1445
+ }[];
1446
+ proposedDates?: {
1447
+ startDate: string;
1448
+ endDate?: string;
1449
+ }[];
1452
1450
  status: "pendingInvite" | "invited" | "providerAvailable" | "finalConfirmationSent" | "providerConfirmed" | "feedbackSent";
1453
1451
  emails: {
1454
1452
  [k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
@@ -1551,18 +1549,14 @@ export type ExternalEventStudent = {
1551
1549
  feedback: {
1552
1550
  [key: string]: unknown;
1553
1551
  };
1554
- dates?: [
1555
- {
1556
- startDate: string;
1557
- endDate?: string;
1558
- }
1559
- ];
1560
- proposedDates?: [
1561
- {
1562
- startDate: string;
1563
- endDate?: string;
1564
- }
1565
- ];
1552
+ dates?: {
1553
+ startDate: string;
1554
+ endDate?: string;
1555
+ }[];
1556
+ proposedDates?: {
1557
+ startDate: string;
1558
+ endDate?: string;
1559
+ }[];
1566
1560
  };
1567
1561
  export type CareersHubInvite = {
1568
1562
  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.199",
5
+ "version": "1.300.201",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1346,6 +1346,8 @@ export type ExternalEventRequest = {
1346
1346
  schoolId?: string,
1347
1347
  providerContactId: string,
1348
1348
  providerId: string,
1349
+ startDate?: string,
1350
+ endDate?: string,
1349
1351
  status: "pending"|"approved"|"declined",
1350
1352
  }
1351
1353
 
@@ -1426,14 +1428,14 @@ export type ExternalEventAttendee = {
1426
1428
  providerContactId: string,
1427
1429
  students?: string[],
1428
1430
  capacity?: number,
1429
- dates?: [{
1431
+ dates?: {
1430
1432
  startDate: string,
1431
1433
  endDate?: string,
1432
- }],
1433
- proposedDates?: [{
1434
+ }[],
1435
+ proposedDates?: {
1434
1436
  startDate: string,
1435
1437
  endDate?: string,
1436
- }]
1438
+ }[],
1437
1439
  status: "pendingInvite"|"invited"|"providerAvailable"|"finalConfirmationSent"|"providerConfirmed"|"feedbackSent"
1438
1440
  emails: {
1439
1441
  [k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
@@ -1519,14 +1521,14 @@ export type ExternalEventStudent = {
1519
1521
  employers?: string[],
1520
1522
  attended?: boolean,
1521
1523
  feedback: {[key: string]: unknown},
1522
- dates?: [{
1524
+ dates?: {
1523
1525
  startDate: string,
1524
1526
  endDate?: string,
1525
- }]
1526
- proposedDates?: [{
1527
+ }[]
1528
+ proposedDates?: {
1527
1529
  startDate: string,
1528
1530
  endDate?: string,
1529
- }]
1531
+ }[]
1530
1532
  }
1531
1533
 
1532
1534
  export type CareersHubInvite = {