@smartytalent/mcp-tools 0.1.33-dev.45 → 0.1.33-dev.47
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/dist/tools.json +34 -15
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -17077,15 +17077,16 @@
|
|
|
17077
17077
|
"description": "File / video uploads for `file-upload` and `video-recording`\nquestion types. Empty for all other types. Files are uploaded\nvia presigned PUT to S3 first; this carries the resulting\nreferences.",
|
|
17078
17078
|
"items": {
|
|
17079
17079
|
"title": "AnswerFileSchema",
|
|
17080
|
-
"description": "File reference for upload-type answers.
|
|
17080
|
+
"description": "File reference for upload-type answers (file-upload /\nvideo-recording question types). The candidate UI obtains\n`fileKey` from POST /v1/guest/attempts/uploads, PUTs the file\nto S3 via the presigned URL returned alongside it, then\nincludes a reference like `{fileKey, fileName, contentType,\nsize}` here on the guest PATCH submission. Wire field names\nmatch what file:process and the eval Lambda's\n_enrich_answers_with_file_content expect (fileKey, not\nfileUrl - the S3 path is server-side only).",
|
|
17081
17081
|
"type": "object",
|
|
17082
17082
|
"properties": {
|
|
17083
|
-
"
|
|
17083
|
+
"fileKey": {
|
|
17084
17084
|
"type": "string",
|
|
17085
|
-
"description": "S3
|
|
17085
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
17086
17086
|
},
|
|
17087
|
-
"
|
|
17088
|
-
"type": "string"
|
|
17087
|
+
"fileName": {
|
|
17088
|
+
"type": "string",
|
|
17089
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
17089
17090
|
},
|
|
17090
17091
|
"contentType": {
|
|
17091
17092
|
"type": "string"
|
|
@@ -17197,6 +17198,14 @@
|
|
|
17197
17198
|
}
|
|
17198
17199
|
}
|
|
17199
17200
|
},
|
|
17201
|
+
"fileResults": {
|
|
17202
|
+
"type": "array",
|
|
17203
|
+
"description": "File-extraction results, one entry per file that\nfile:process processed during the assessment workflow's\nprocess_attachments step. Stamped onto the attempt by\nthe workflow's `attempt:trigger_evaluation` action right\nbefore /reevaluate fires. The eval Lambda joins these\nonto answers[i].files[i] by fileKey so the AI evaluator\nsees extracted content (transcripts / slide text / OCR)\nalongside the candidate's text answer for the same\nquestion. Locale value type left as Any because each\nfile:process emits a different shape per content type\n(PDF text, video transcript, etc).",
|
|
17204
|
+
"items": {
|
|
17205
|
+
"type": "object",
|
|
17206
|
+
"additionalProperties": true
|
|
17207
|
+
}
|
|
17208
|
+
},
|
|
17200
17209
|
"startedAt": {
|
|
17201
17210
|
"type": "string",
|
|
17202
17211
|
"format": "date-time",
|
|
@@ -17563,15 +17572,16 @@
|
|
|
17563
17572
|
"description": "File / video uploads for `file-upload` and `video-recording`\nquestion types. Empty for all other types. Files are uploaded\nvia presigned PUT to S3 first; this carries the resulting\nreferences.",
|
|
17564
17573
|
"items": {
|
|
17565
17574
|
"title": "AnswerFileSchema",
|
|
17566
|
-
"description": "File reference for upload-type answers.
|
|
17575
|
+
"description": "File reference for upload-type answers (file-upload /\nvideo-recording question types). The candidate UI obtains\n`fileKey` from POST /v1/guest/attempts/uploads, PUTs the file\nto S3 via the presigned URL returned alongside it, then\nincludes a reference like `{fileKey, fileName, contentType,\nsize}` here on the guest PATCH submission. Wire field names\nmatch what file:process and the eval Lambda's\n_enrich_answers_with_file_content expect (fileKey, not\nfileUrl - the S3 path is server-side only).",
|
|
17567
17576
|
"type": "object",
|
|
17568
17577
|
"properties": {
|
|
17569
|
-
"
|
|
17578
|
+
"fileKey": {
|
|
17570
17579
|
"type": "string",
|
|
17571
|
-
"description": "S3
|
|
17580
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
17572
17581
|
},
|
|
17573
|
-
"
|
|
17574
|
-
"type": "string"
|
|
17582
|
+
"fileName": {
|
|
17583
|
+
"type": "string",
|
|
17584
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
17575
17585
|
},
|
|
17576
17586
|
"contentType": {
|
|
17577
17587
|
"type": "string"
|
|
@@ -17683,6 +17693,14 @@
|
|
|
17683
17693
|
}
|
|
17684
17694
|
}
|
|
17685
17695
|
},
|
|
17696
|
+
"fileResults": {
|
|
17697
|
+
"type": "array",
|
|
17698
|
+
"description": "File-extraction results, one entry per file that\nfile:process processed during the assessment workflow's\nprocess_attachments step. Stamped onto the attempt by\nthe workflow's `attempt:trigger_evaluation` action right\nbefore /reevaluate fires. The eval Lambda joins these\nonto answers[i].files[i] by fileKey so the AI evaluator\nsees extracted content (transcripts / slide text / OCR)\nalongside the candidate's text answer for the same\nquestion. Locale value type left as Any because each\nfile:process emits a different shape per content type\n(PDF text, video transcript, etc).",
|
|
17699
|
+
"items": {
|
|
17700
|
+
"type": "object",
|
|
17701
|
+
"additionalProperties": true
|
|
17702
|
+
}
|
|
17703
|
+
},
|
|
17686
17704
|
"startedAt": {
|
|
17687
17705
|
"type": "string",
|
|
17688
17706
|
"format": "date-time",
|
|
@@ -18064,15 +18082,16 @@
|
|
|
18064
18082
|
"description": "File / video uploads for `file-upload` and `video-recording`\nquestion types. Empty for all other types. Files are uploaded\nvia presigned PUT to S3 first; this carries the resulting\nreferences.",
|
|
18065
18083
|
"items": {
|
|
18066
18084
|
"title": "AnswerFileSchema",
|
|
18067
|
-
"description": "File reference for upload-type answers.
|
|
18085
|
+
"description": "File reference for upload-type answers (file-upload /\nvideo-recording question types). The candidate UI obtains\n`fileKey` from POST /v1/guest/attempts/uploads, PUTs the file\nto S3 via the presigned URL returned alongside it, then\nincludes a reference like `{fileKey, fileName, contentType,\nsize}` here on the guest PATCH submission. Wire field names\nmatch what file:process and the eval Lambda's\n_enrich_answers_with_file_content expect (fileKey, not\nfileUrl - the S3 path is server-side only).",
|
|
18068
18086
|
"type": "object",
|
|
18069
18087
|
"properties": {
|
|
18070
|
-
"
|
|
18088
|
+
"fileKey": {
|
|
18071
18089
|
"type": "string",
|
|
18072
|
-
"description": "S3
|
|
18090
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
18073
18091
|
},
|
|
18074
|
-
"
|
|
18075
|
-
"type": "string"
|
|
18092
|
+
"fileName": {
|
|
18093
|
+
"type": "string",
|
|
18094
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
18076
18095
|
},
|
|
18077
18096
|
"contentType": {
|
|
18078
18097
|
"type": "string"
|