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.
- package/lib/typeDefinitions.d.ts +13 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +15 -0
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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 = {
|