placementt-core 1.400.613 → 1.400.614
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
|
@@ -2198,13 +2198,16 @@ export type SiteErrorLog = {
|
|
|
2198
2198
|
created: string;
|
|
2199
2199
|
email?: string;
|
|
2200
2200
|
userType?: "Staff" | "Students";
|
|
2201
|
-
product
|
|
2201
|
+
product?: Products;
|
|
2202
2202
|
uid?: string;
|
|
2203
2203
|
url: string;
|
|
2204
2204
|
error: any;
|
|
2205
2205
|
info: any;
|
|
2206
2206
|
oId?: string;
|
|
2207
2207
|
resolved: boolean;
|
|
2208
|
+
resolvedDate?: string;
|
|
2209
|
+
type: "frontend" | "backend";
|
|
2210
|
+
requestData?: string;
|
|
2208
2211
|
};
|
|
2209
2212
|
export type Lead = {
|
|
2210
2213
|
forename?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2160,13 +2160,16 @@ export type SiteErrorLog = {
|
|
|
2160
2160
|
created: string,
|
|
2161
2161
|
email?: string,
|
|
2162
2162
|
userType?: "Staff"|"Students",
|
|
2163
|
-
product
|
|
2163
|
+
product?: Products,
|
|
2164
2164
|
uid?: string,
|
|
2165
2165
|
url: string,
|
|
2166
2166
|
error: any,
|
|
2167
2167
|
info: any,
|
|
2168
2168
|
oId?: string,
|
|
2169
2169
|
resolved: boolean,
|
|
2170
|
+
resolvedDate?: string,
|
|
2171
|
+
type: "frontend"|"backend",
|
|
2172
|
+
requestData?: string,
|
|
2170
2173
|
}
|
|
2171
2174
|
|
|
2172
2175
|
export type Lead = {
|