placementt-core 1.400.643 → 1.400.645
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
|
@@ -809,6 +809,7 @@ export type InstituteData = {
|
|
|
809
809
|
privacyPolicy: Timestamp;
|
|
810
810
|
demo?: boolean;
|
|
811
811
|
emailTemplates?: {
|
|
812
|
+
onboarding: boolean;
|
|
812
813
|
employerDatabaseInvite?: string;
|
|
813
814
|
};
|
|
814
815
|
acceptingParents?: boolean;
|
|
@@ -2252,6 +2253,7 @@ export type Communication = {
|
|
|
2252
2253
|
completedOn?: string;
|
|
2253
2254
|
linkedCommId?: string;
|
|
2254
2255
|
parentCommId?: string;
|
|
2256
|
+
uid?: string;
|
|
2255
2257
|
};
|
|
2256
2258
|
export type CommSchemaItem = {
|
|
2257
2259
|
name: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -810,6 +810,7 @@ export type InstituteData = {
|
|
|
810
810
|
privacyPolicy: Timestamp,
|
|
811
811
|
demo?: boolean,
|
|
812
812
|
emailTemplates?: {
|
|
813
|
+
onboarding: boolean,
|
|
813
814
|
employerDatabaseInvite?: string,
|
|
814
815
|
},
|
|
815
816
|
acceptingParents?: boolean,
|
|
@@ -2216,6 +2217,7 @@ export type Communication = {
|
|
|
2216
2217
|
completedOn?: string // ISO date
|
|
2217
2218
|
linkedCommId?: string,
|
|
2218
2219
|
parentCommId?: string,
|
|
2220
|
+
uid?: string
|
|
2219
2221
|
};
|
|
2220
2222
|
|
|
2221
2223
|
export type CommSchemaItem = {
|