placementt-core 1.400.658 → 1.400.659

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.
@@ -312,6 +312,7 @@ export type UserData = {
312
312
  surname: string;
313
313
  pronouns?: string;
314
314
  parentEmail?: string;
315
+ parentEmails?: string[];
315
316
  year?: string;
316
317
  [key: string]: any;
317
318
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.658",
5
+ "version": "1.400.659",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -337,6 +337,7 @@ export type UserData = {
337
337
  surname: string,
338
338
  pronouns?: string,
339
339
  parentEmail?: string,
340
+ parentEmails?: string[],
340
341
  year?: string
341
342
  [key: string]: any
342
343
  },