placementt-core 1.400.960 → 1.400.961

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.
@@ -3023,6 +3023,17 @@ export type StudentActivity = {
3023
3023
  reflection?: string;
3024
3024
  evidenceFileIds?: string[];
3025
3025
  };
3026
+ export type SuggestedFixRepo = "placementt-web" | "placementt-backend" | "placementt-core";
3027
+ export type SuggestedFix = {
3028
+ isCodeChange: boolean;
3029
+ summary: string;
3030
+ confidence?: "low" | "medium" | "high";
3031
+ repo?: SuggestedFixRepo;
3032
+ filePath?: string;
3033
+ newContent?: string;
3034
+ diff?: string;
3035
+ generatedAt: string;
3036
+ };
3026
3037
  export type SiteErrorLog = {
3027
3038
  created: string;
3028
3039
  email?: string;
@@ -3039,6 +3050,8 @@ export type SiteErrorLog = {
3039
3050
  requestData?: string;
3040
3051
  clickupTaskId?: string;
3041
3052
  clickupTaskName?: string;
3053
+ suggestedFix?: SuggestedFix;
3054
+ prUrl?: string;
3042
3055
  };
3043
3056
  export type Lead = {
3044
3057
  forename?: 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.960",
5
+ "version": "1.400.961",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2993,6 +2993,19 @@ export type StudentActivity = {
2993
2993
  evidenceFileIds?: string[];
2994
2994
  };
2995
2995
 
2996
+ export type SuggestedFixRepo = "placementt-web"|"placementt-backend"|"placementt-core";
2997
+
2998
+ export type SuggestedFix = {
2999
+ isCodeChange: boolean,
3000
+ summary: string,
3001
+ confidence?: "low"|"medium"|"high",
3002
+ repo?: SuggestedFixRepo,
3003
+ filePath?: string,
3004
+ newContent?: string,
3005
+ diff?: string,
3006
+ generatedAt: string,
3007
+ }
3008
+
2996
3009
  export type SiteErrorLog = {
2997
3010
  created: string,
2998
3011
  email?: string,
@@ -3009,6 +3022,8 @@ export type SiteErrorLog = {
3009
3022
  requestData?: string,
3010
3023
  clickupTaskId?: string,
3011
3024
  clickupTaskName?: string,
3025
+ suggestedFix?: SuggestedFix,
3026
+ prUrl?: string,
3012
3027
  }
3013
3028
 
3014
3029
  export type Lead = {