@smartytalent/mcp-tools 0.1.33-dev.45 → 0.1.33-dev.46
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 +18 -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"
|
|
@@ -17563,15 +17564,16 @@
|
|
|
17563
17564
|
"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
17565
|
"items": {
|
|
17565
17566
|
"title": "AnswerFileSchema",
|
|
17566
|
-
"description": "File reference for upload-type answers.
|
|
17567
|
+
"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
17568
|
"type": "object",
|
|
17568
17569
|
"properties": {
|
|
17569
|
-
"
|
|
17570
|
+
"fileKey": {
|
|
17570
17571
|
"type": "string",
|
|
17571
|
-
"description": "S3
|
|
17572
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
17572
17573
|
},
|
|
17573
|
-
"
|
|
17574
|
-
"type": "string"
|
|
17574
|
+
"fileName": {
|
|
17575
|
+
"type": "string",
|
|
17576
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
17575
17577
|
},
|
|
17576
17578
|
"contentType": {
|
|
17577
17579
|
"type": "string"
|
|
@@ -18064,15 +18066,16 @@
|
|
|
18064
18066
|
"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
18067
|
"items": {
|
|
18066
18068
|
"title": "AnswerFileSchema",
|
|
18067
|
-
"description": "File reference for upload-type answers.
|
|
18069
|
+
"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
18070
|
"type": "object",
|
|
18069
18071
|
"properties": {
|
|
18070
|
-
"
|
|
18072
|
+
"fileKey": {
|
|
18071
18073
|
"type": "string",
|
|
18072
|
-
"description": "S3
|
|
18074
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
18073
18075
|
},
|
|
18074
|
-
"
|
|
18075
|
-
"type": "string"
|
|
18076
|
+
"fileName": {
|
|
18077
|
+
"type": "string",
|
|
18078
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
18076
18079
|
},
|
|
18077
18080
|
"contentType": {
|
|
18078
18081
|
"type": "string"
|