@smartytalent/openai-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
|
@@ -16539,15 +16539,16 @@
|
|
|
16539
16539
|
"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.",
|
|
16540
16540
|
"items": {
|
|
16541
16541
|
"title": "AnswerFileSchema",
|
|
16542
|
-
"description": "File reference for upload-type answers.
|
|
16542
|
+
"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).",
|
|
16543
16543
|
"type": "object",
|
|
16544
16544
|
"properties": {
|
|
16545
|
-
"
|
|
16545
|
+
"fileKey": {
|
|
16546
16546
|
"type": "string",
|
|
16547
|
-
"description": "S3
|
|
16547
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
16548
16548
|
},
|
|
16549
|
-
"
|
|
16550
|
-
"type": "string"
|
|
16549
|
+
"fileName": {
|
|
16550
|
+
"type": "string",
|
|
16551
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
16551
16552
|
},
|
|
16552
16553
|
"contentType": {
|
|
16553
16554
|
"type": "string"
|
|
@@ -17017,15 +17018,16 @@
|
|
|
17017
17018
|
"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.",
|
|
17018
17019
|
"items": {
|
|
17019
17020
|
"title": "AnswerFileSchema",
|
|
17020
|
-
"description": "File reference for upload-type answers.
|
|
17021
|
+
"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).",
|
|
17021
17022
|
"type": "object",
|
|
17022
17023
|
"properties": {
|
|
17023
|
-
"
|
|
17024
|
+
"fileKey": {
|
|
17024
17025
|
"type": "string",
|
|
17025
|
-
"description": "S3
|
|
17026
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
17026
17027
|
},
|
|
17027
|
-
"
|
|
17028
|
-
"type": "string"
|
|
17028
|
+
"fileName": {
|
|
17029
|
+
"type": "string",
|
|
17030
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
17029
17031
|
},
|
|
17030
17032
|
"contentType": {
|
|
17031
17033
|
"type": "string"
|
|
@@ -17498,15 +17500,16 @@
|
|
|
17498
17500
|
"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.",
|
|
17499
17501
|
"items": {
|
|
17500
17502
|
"title": "AnswerFileSchema",
|
|
17501
|
-
"description": "File reference for upload-type answers.
|
|
17503
|
+
"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).",
|
|
17502
17504
|
"type": "object",
|
|
17503
17505
|
"properties": {
|
|
17504
|
-
"
|
|
17506
|
+
"fileKey": {
|
|
17505
17507
|
"type": "string",
|
|
17506
|
-
"description": "S3
|
|
17508
|
+
"description": "S3 key in the attempt bucket. Returned by POST /v1/guest/attempts/uploads as data.attributes.fileKey; FE echoes it here."
|
|
17507
17509
|
},
|
|
17508
|
-
"
|
|
17509
|
-
"type": "string"
|
|
17510
|
+
"fileName": {
|
|
17511
|
+
"type": "string",
|
|
17512
|
+
"description": "Candidate-supplied original file name (display + audit trail)."
|
|
17510
17513
|
},
|
|
17511
17514
|
"contentType": {
|
|
17512
17515
|
"type": "string"
|