placementt-core 1.400.589 → 1.400.591
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 +24 -1
- package/package.json +1 -1
- package/src/typeDefinitions.ts +25 -1
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1819,8 +1819,9 @@ export type ExternalEventCareersSchool = {
|
|
|
1819
1819
|
log: {
|
|
1820
1820
|
[k: string]: string;
|
|
1821
1821
|
};
|
|
1822
|
-
topInteraction: "
|
|
1822
|
+
topInteraction: "invalid_email" | "hard_bounce" | "soft_bounce" | "blocked" | "error" | "deferred" | "unsubscribed" | "click" | "unique_opened" | "delivered" | "request" | "sent";
|
|
1823
1823
|
messageId?: string;
|
|
1824
|
+
interactions?: string[];
|
|
1824
1825
|
};
|
|
1825
1826
|
};
|
|
1826
1827
|
completed: {
|
|
@@ -1924,6 +1925,18 @@ export type ExternalEventStudent = {
|
|
|
1924
1925
|
finalConfirmationSent?: string;
|
|
1925
1926
|
feedbackSent?: string;
|
|
1926
1927
|
};
|
|
1928
|
+
emails: {
|
|
1929
|
+
[k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
|
|
1930
|
+
sent: number;
|
|
1931
|
+
reconciled: string | boolean;
|
|
1932
|
+
log: {
|
|
1933
|
+
[k: string]: string;
|
|
1934
|
+
};
|
|
1935
|
+
topInteraction: "invalid_email" | "hard_bounce" | "soft_bounce" | "blocked" | "error" | "deferred" | "unsubscribed" | "click" | "unique_opened" | "delivered" | "request" | "sent";
|
|
1936
|
+
messageId?: string;
|
|
1937
|
+
interactions?: string[];
|
|
1938
|
+
};
|
|
1939
|
+
};
|
|
1927
1940
|
completed: {
|
|
1928
1941
|
[key in "studentPre" | "studentDuring" | "studentPost"]: {
|
|
1929
1942
|
filesViewed?: string[];
|
|
@@ -2180,4 +2193,14 @@ export type StudentActivity = {
|
|
|
2180
2193
|
reflection?: string;
|
|
2181
2194
|
evidenceFileIds?: string[];
|
|
2182
2195
|
};
|
|
2196
|
+
export type SiteErrorLog = {
|
|
2197
|
+
created: string;
|
|
2198
|
+
email?: string;
|
|
2199
|
+
uid?: string;
|
|
2200
|
+
url: string;
|
|
2201
|
+
error: any;
|
|
2202
|
+
info: any;
|
|
2203
|
+
oId?: string;
|
|
2204
|
+
resolved: boolean;
|
|
2205
|
+
};
|
|
2183
2206
|
export {};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1737,8 +1737,9 @@ export type ExternalEventCareersSchool = {
|
|
|
1737
1737
|
log: {
|
|
1738
1738
|
[k: string]: string // dateTimeString : eventType
|
|
1739
1739
|
}
|
|
1740
|
-
topInteraction:
|
|
1740
|
+
topInteraction: "invalid_email"|"hard_bounce"|"soft_bounce"|"blocked"|"error"|"deferred"|"unsubscribed"|"click"|"unique_opened"|"delivered"|"request"|"sent",
|
|
1741
1741
|
messageId?: string,
|
|
1742
|
+
interactions?: string[]
|
|
1742
1743
|
}
|
|
1743
1744
|
}
|
|
1744
1745
|
completed: {[key in "schoolPre"|"schoolDuring"|"schoolPost"]: {
|
|
@@ -1818,6 +1819,18 @@ export type ExternalEventStudent = {
|
|
|
1818
1819
|
finalConfirmationSent?: string,
|
|
1819
1820
|
feedbackSent?: string,
|
|
1820
1821
|
}
|
|
1822
|
+
emails: {
|
|
1823
|
+
[k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
|
|
1824
|
+
sent: number, // If below 3, keep sending reminders.
|
|
1825
|
+
reconciled: string|boolean, // When did the step get finished, such as employers responding to invites
|
|
1826
|
+
log: {
|
|
1827
|
+
[k: string]: string // dateTimeString : eventType
|
|
1828
|
+
}
|
|
1829
|
+
topInteraction: "invalid_email"|"hard_bounce"|"soft_bounce"|"blocked"|"error"|"deferred"|"unsubscribed"|"click"|"unique_opened"|"delivered"|"request"|"sent",
|
|
1830
|
+
messageId?: string,
|
|
1831
|
+
interactions?: string[]
|
|
1832
|
+
}
|
|
1833
|
+
}
|
|
1821
1834
|
completed: {[key in "studentPre"|"studentDuring"|"studentPost"]: {
|
|
1822
1835
|
filesViewed?: string[],
|
|
1823
1836
|
formsCompleted?: {[key: string]: unknown},
|
|
@@ -2141,3 +2154,14 @@ export type StudentActivity = {
|
|
|
2141
2154
|
// -------------------------
|
|
2142
2155
|
evidenceFileIds?: string[];
|
|
2143
2156
|
};
|
|
2157
|
+
|
|
2158
|
+
export type SiteErrorLog = {
|
|
2159
|
+
created: string,
|
|
2160
|
+
email?: string,
|
|
2161
|
+
uid?: string,
|
|
2162
|
+
url: string,
|
|
2163
|
+
error: any,
|
|
2164
|
+
info: any,
|
|
2165
|
+
oId?: string,
|
|
2166
|
+
resolved: boolean,
|
|
2167
|
+
}
|