placementt-core 1.400.837 → 1.400.839
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
|
@@ -35,8 +35,8 @@ export type CSVExportRequest = {
|
|
|
35
35
|
filename?: string;
|
|
36
36
|
};
|
|
37
37
|
export type CSVExportResponse = {
|
|
38
|
-
url
|
|
39
|
-
filename
|
|
38
|
+
url?: string;
|
|
39
|
+
filename?: string;
|
|
40
40
|
rowCount: number;
|
|
41
41
|
};
|
|
42
42
|
export type Products = "institutes" | "providers" | "students" | "admin";
|
|
@@ -1197,6 +1197,8 @@ export type PlacementReviewDetails = {
|
|
|
1197
1197
|
export type ProviderMatch = {
|
|
1198
1198
|
name: string;
|
|
1199
1199
|
insurance?: boolean;
|
|
1200
|
+
insuranceExpiry?: string;
|
|
1201
|
+
eventConsent?: boolean;
|
|
1200
1202
|
placements: number;
|
|
1201
1203
|
savedBy?: number;
|
|
1202
1204
|
providerId?: string;
|
|
@@ -2366,6 +2368,7 @@ export type SiteErrorLog = {
|
|
|
2366
2368
|
type: "frontend" | "backend";
|
|
2367
2369
|
requestData?: string;
|
|
2368
2370
|
clickupTaskId?: string;
|
|
2371
|
+
clickupTaskName?: string;
|
|
2369
2372
|
};
|
|
2370
2373
|
export type Lead = {
|
|
2371
2374
|
forename?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -23,8 +23,8 @@ export type CSVExportRequest = {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
export type CSVExportResponse = {
|
|
26
|
-
url
|
|
27
|
-
filename
|
|
26
|
+
url?: string;
|
|
27
|
+
filename?: string;
|
|
28
28
|
rowCount: number;
|
|
29
29
|
}
|
|
30
30
|
|
|
@@ -1165,6 +1165,8 @@ export type PlacementReviewDetails = {
|
|
|
1165
1165
|
export type ProviderMatch = {
|
|
1166
1166
|
name: string,
|
|
1167
1167
|
insurance?: boolean,
|
|
1168
|
+
insuranceExpiry?: string,
|
|
1169
|
+
eventConsent?: boolean,
|
|
1168
1170
|
placements: number
|
|
1169
1171
|
savedBy?: number,
|
|
1170
1172
|
providerId?: string,
|
|
@@ -2306,6 +2308,7 @@ export type SiteErrorLog = {
|
|
|
2306
2308
|
type: "frontend"|"backend",
|
|
2307
2309
|
requestData?: string,
|
|
2308
2310
|
clickupTaskId?: string,
|
|
2311
|
+
clickupTaskName?: string,
|
|
2309
2312
|
}
|
|
2310
2313
|
|
|
2311
2314
|
export type Lead = {
|
|
@@ -2481,4 +2484,4 @@ export type DfESchoolContact = {
|
|
|
2481
2484
|
headteacher: string,
|
|
2482
2485
|
type: string,
|
|
2483
2486
|
ofsted: string,
|
|
2484
|
-
}
|
|
2487
|
+
}
|