placementt-core 1.400.404 → 1.400.406
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
|
@@ -771,6 +771,7 @@ export type InstituteData = {
|
|
|
771
771
|
anonymiseAlumniConvoStudents?: boolean;
|
|
772
772
|
alumniConversations?: boolean;
|
|
773
773
|
activityInvitesSent?: string;
|
|
774
|
+
schoolCanViewEmployerEmail?: boolean;
|
|
774
775
|
} & Address;
|
|
775
776
|
export type ExternalActivity = {
|
|
776
777
|
title?: string;
|
|
@@ -1257,7 +1258,11 @@ export type EmailCampaign = {
|
|
|
1257
1258
|
recipients: {
|
|
1258
1259
|
allSelected: boolean;
|
|
1259
1260
|
search: string | undefined;
|
|
1260
|
-
filters:
|
|
1261
|
+
filters: {
|
|
1262
|
+
k: string;
|
|
1263
|
+
e: string;
|
|
1264
|
+
v: unknown;
|
|
1265
|
+
}[] | undefined;
|
|
1261
1266
|
} | (string | {
|
|
1262
1267
|
[key: string]: unknown;
|
|
1263
1268
|
})[];
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -770,7 +770,8 @@ export type InstituteData = {
|
|
|
770
770
|
approveAlumniMessages?: boolean,
|
|
771
771
|
anonymiseAlumniConvoStudents?: boolean,
|
|
772
772
|
alumniConversations?: boolean,
|
|
773
|
-
activityInvitesSent?: string
|
|
773
|
+
activityInvitesSent?: string,
|
|
774
|
+
schoolCanViewEmployerEmail?: boolean,
|
|
774
775
|
}&Address;
|
|
775
776
|
|
|
776
777
|
export type ExternalActivity = {
|
|
@@ -1230,7 +1231,7 @@ export type EmailCampaign = {
|
|
|
1230
1231
|
recipients: {
|
|
1231
1232
|
allSelected: boolean;
|
|
1232
1233
|
search: string | undefined;
|
|
1233
|
-
filters: unknown[]
|
|
1234
|
+
filters: {k: string, e: string, v: unknown}[] | undefined;
|
|
1234
1235
|
}|(string|{[key: string]: unknown})[] // Filters or list of recipients
|
|
1235
1236
|
}
|
|
1236
1237
|
|