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.
@@ -2198,13 +2198,16 @@ export type SiteErrorLog = {
2198
2198
  created: string;
2199
2199
  email?: string;
2200
2200
  userType?: "Staff" | "Students";
2201
- product: Products;
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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.613",
5
+ "version": "1.400.614",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2160,13 +2160,16 @@ export type SiteErrorLog = {
2160
2160
  created: string,
2161
2161
  email?: string,
2162
2162
  userType?: "Staff"|"Students",
2163
- product: Products,
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 = {