placementt-core 1.400.665 → 1.400.666
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 +14 -0
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1120,7 +1120,22 @@ export type PlacementReviewDetails = {
|
|
|
1120
1120
|
[key: string]: ExternalActivity;
|
|
1121
1121
|
};
|
|
1122
1122
|
additionalNeeds?: string;
|
|
1123
|
+
providerMatch: {
|
|
1124
|
+
match?: boolean;
|
|
1125
|
+
matches: [string, ProviderMatch][];
|
|
1126
|
+
};
|
|
1123
1127
|
};
|
|
1128
|
+
export type ProviderMatch = {
|
|
1129
|
+
name: string;
|
|
1130
|
+
insurance?: boolean;
|
|
1131
|
+
placements: number;
|
|
1132
|
+
savedBy?: number;
|
|
1133
|
+
providerId?: string;
|
|
1134
|
+
forename?: string;
|
|
1135
|
+
surname?: string;
|
|
1136
|
+
email?: string;
|
|
1137
|
+
type: "providerContact" | "provider";
|
|
1138
|
+
} & ProviderData;
|
|
1124
1139
|
export type BlogCategories = "students" | "providers" | "institutes" | "careerthread";
|
|
1125
1140
|
export type Blog = {
|
|
1126
1141
|
title?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1103,8 +1103,22 @@ export type PlacementReviewDetails = {
|
|
|
1103
1103
|
consentedActivities?: string[],
|
|
1104
1104
|
instituteActivities?: {[key: string]: ExternalActivity}
|
|
1105
1105
|
additionalNeeds?: string,
|
|
1106
|
+
providerMatch: {match?: boolean, matches: [string, ProviderMatch][]}
|
|
1106
1107
|
}
|
|
1107
1108
|
|
|
1109
|
+
export type ProviderMatch = {
|
|
1110
|
+
name: string,
|
|
1111
|
+
insurance?: boolean,
|
|
1112
|
+
placements: number
|
|
1113
|
+
savedBy?: number,
|
|
1114
|
+
providerId?: string,
|
|
1115
|
+
forename?: string,
|
|
1116
|
+
surname?: string,
|
|
1117
|
+
email?: string,
|
|
1118
|
+
type: "providerContact"|"provider",
|
|
1119
|
+
}&ProviderData;
|
|
1120
|
+
|
|
1121
|
+
|
|
1108
1122
|
export type BlogCategories = "students"|"providers"|"institutes"|"careerthread"
|
|
1109
1123
|
|
|
1110
1124
|
export type Blog = {
|