placementt-core 1.400.910 → 1.400.911

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.
@@ -1227,6 +1227,12 @@ export type PlacementReviewDetails = {
1227
1227
  [key: string]: ExternalActivity;
1228
1228
  };
1229
1229
  additionalNeeds?: string;
1230
+ additionalNeedsFiles?: {
1231
+ [key: string]: {
1232
+ name: string;
1233
+ url: string;
1234
+ };
1235
+ };
1230
1236
  providerMatch: {
1231
1237
  match?: boolean;
1232
1238
  matches: [string, ProviderMatch][];
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.910",
5
+ "version": "1.400.911",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1196,6 +1196,7 @@ export type PlacementReviewDetails = {
1196
1196
  consentedActivities?: string[],
1197
1197
  instituteActivities?: {[key: string]: ExternalActivity}
1198
1198
  additionalNeeds?: string,
1199
+ additionalNeedsFiles?: {[key: string]: {name: string, url: string}},
1199
1200
  providerMatch: {match?: boolean, matches: [string, ProviderMatch][]},
1200
1201
  attended?: boolean|"requested",
1201
1202
  trackAttendance?: boolean,