placementt-core 1.300.592 → 1.300.596
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 +15 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +16 -0
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -2197,6 +2197,7 @@ export type SiteErrorLog = {
|
|
|
2197
2197
|
created: string;
|
|
2198
2198
|
email?: string;
|
|
2199
2199
|
userType?: "Staff" | "Students";
|
|
2200
|
+
product: Products;
|
|
2200
2201
|
uid?: string;
|
|
2201
2202
|
url: string;
|
|
2202
2203
|
error: any;
|
|
@@ -2204,4 +2205,18 @@ export type SiteErrorLog = {
|
|
|
2204
2205
|
oId?: string;
|
|
2205
2206
|
resolved: boolean;
|
|
2206
2207
|
};
|
|
2208
|
+
export type Leads = {
|
|
2209
|
+
forename?: string;
|
|
2210
|
+
surname?: string;
|
|
2211
|
+
email?: string;
|
|
2212
|
+
organisation?: string;
|
|
2213
|
+
wex?: boolean;
|
|
2214
|
+
events?: boolean;
|
|
2215
|
+
docCheck?: boolean;
|
|
2216
|
+
dateAdded?: string;
|
|
2217
|
+
addedBy: string;
|
|
2218
|
+
assignee: string;
|
|
2219
|
+
personalNotes: string;
|
|
2220
|
+
generalNotes: string;
|
|
2221
|
+
};
|
|
2207
2222
|
export {};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2159,10 +2159,26 @@ export type SiteErrorLog = {
|
|
|
2159
2159
|
created: string,
|
|
2160
2160
|
email?: string,
|
|
2161
2161
|
userType?: "Staff"|"Students",
|
|
2162
|
+
product: Products,
|
|
2162
2163
|
uid?: string,
|
|
2163
2164
|
url: string,
|
|
2164
2165
|
error: any,
|
|
2165
2166
|
info: any,
|
|
2166
2167
|
oId?: string,
|
|
2167
2168
|
resolved: boolean,
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
export type Leads = {
|
|
2172
|
+
forename?: string,
|
|
2173
|
+
surname?: string,
|
|
2174
|
+
email?: string,
|
|
2175
|
+
organisation?: string,
|
|
2176
|
+
wex?: boolean,
|
|
2177
|
+
events?: boolean,
|
|
2178
|
+
docCheck?: boolean,
|
|
2179
|
+
dateAdded?: string,
|
|
2180
|
+
addedBy: string,
|
|
2181
|
+
assignee: string,
|
|
2182
|
+
personalNotes: string,
|
|
2183
|
+
generalNotes: string,
|
|
2168
2184
|
}
|