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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.665",
5
+ "version": "1.400.666",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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 = {