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.
- package/lib/typeDefinitions.d.ts +10 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +11 -0
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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
|
+
}
|