placementt-core 1.300.590 → 1.300.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.
@@ -2193,4 +2193,14 @@ export type StudentActivity = {
2193
2193
  reflection?: string;
2194
2194
  evidenceFileIds?: string[];
2195
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
+ };
2196
2206
  export {};
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.590",
5
+ "version": "1.300.591",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2154,3 +2154,14 @@ export type StudentActivity = {
2154
2154
  // -------------------------
2155
2155
  evidenceFileIds?: string[];
2156
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
+ }