placementt-core 1.300.658 → 1.300.660
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
|
@@ -306,6 +306,12 @@ export type Address = {
|
|
|
306
306
|
what3Words?: string;
|
|
307
307
|
};
|
|
308
308
|
export type FlagCodes = "inactive" | "noParentEmailWarning" | "noParentEmailError" | "overdue" | "noInsurance" | "providerRejection" | "nearingStart" | "awaitingInsurance" | "noRiskAssessment" | "awaitingRiskAssessment" | "parentEmailFailed" | "providerEmailFailed" | "userEmailFailed" | "noDbsCheck" | "awaitingDbsCheck" | "completeOnboarding" | "reviewOnboarding" | "requestedVisibleAddresses" | "requestedVisiblePlacementListings" | "addOnboarding" | "studentNotAccepted" | "insuranceEarlyExpiry" | "reminder" | "insuranceExpired" | "latePlacementStage" | "stagnantPlacementStage";
|
|
309
|
+
export type WondeParentContact = {
|
|
310
|
+
forename: string;
|
|
311
|
+
surname: string;
|
|
312
|
+
relationship: string;
|
|
313
|
+
email: string;
|
|
314
|
+
};
|
|
309
315
|
export type UserData = {
|
|
310
316
|
details: {
|
|
311
317
|
forename: string;
|
|
@@ -315,6 +321,7 @@ export type UserData = {
|
|
|
315
321
|
year?: string;
|
|
316
322
|
[key: string]: any;
|
|
317
323
|
};
|
|
324
|
+
parentEmails?: WondeParentContact[];
|
|
318
325
|
wonde?: {
|
|
319
326
|
upi: string;
|
|
320
327
|
id: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -330,6 +330,12 @@ export type FlagCodes =
|
|
|
330
330
|
"latePlacementStage"|
|
|
331
331
|
"stagnantPlacementStage"
|
|
332
332
|
|
|
333
|
+
export type WondeParentContact = {
|
|
334
|
+
forename: string,
|
|
335
|
+
surname: string,
|
|
336
|
+
relationship: string,
|
|
337
|
+
email: string,
|
|
338
|
+
};
|
|
333
339
|
|
|
334
340
|
export type UserData = {
|
|
335
341
|
details: {
|
|
@@ -340,6 +346,7 @@ export type UserData = {
|
|
|
340
346
|
year?: string
|
|
341
347
|
[key: string]: any
|
|
342
348
|
},
|
|
349
|
+
parentEmails?: WondeParentContact[],
|
|
343
350
|
wonde?: {
|
|
344
351
|
upi: string,
|
|
345
352
|
id: string,
|