placementt-core 1.400.850 → 1.400.852
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
|
@@ -188,7 +188,7 @@ export type StudentPlacementData = {
|
|
|
188
188
|
};
|
|
189
189
|
};
|
|
190
190
|
completedForms?: Record<string, boolean>;
|
|
191
|
-
attended?: boolean;
|
|
191
|
+
attended?: boolean | "requested";
|
|
192
192
|
};
|
|
193
193
|
export type PlacementQuestions = {
|
|
194
194
|
title: string;
|
|
@@ -1202,6 +1202,7 @@ export type PlacementReviewDetails = {
|
|
|
1202
1202
|
match?: boolean;
|
|
1203
1203
|
matches: [string, ProviderMatch][];
|
|
1204
1204
|
};
|
|
1205
|
+
attended?: boolean | "requested";
|
|
1205
1206
|
};
|
|
1206
1207
|
export type ProviderMatch = {
|
|
1207
1208
|
name: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -157,7 +157,7 @@ export type StudentPlacementData = {
|
|
|
157
157
|
student: number[],
|
|
158
158
|
}}
|
|
159
159
|
completedForms?: Record<string, boolean>,
|
|
160
|
-
attended?: boolean, // True if employer said they've attended. False if absent,
|
|
160
|
+
attended?: boolean|"requested", // True if employer said they've attended. False if absent, "requested" if request was sent.
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
export type PlacementQuestions = {
|
|
@@ -1164,7 +1164,8 @@ export type PlacementReviewDetails = {
|
|
|
1164
1164
|
consentedActivities?: string[],
|
|
1165
1165
|
instituteActivities?: {[key: string]: ExternalActivity}
|
|
1166
1166
|
additionalNeeds?: string,
|
|
1167
|
-
providerMatch: {match?: boolean, matches: [string, ProviderMatch][]}
|
|
1167
|
+
providerMatch: {match?: boolean, matches: [string, ProviderMatch][]},
|
|
1168
|
+
attended?: boolean|"requested",
|
|
1168
1169
|
}
|
|
1169
1170
|
|
|
1170
1171
|
export type ProviderMatch = {
|