@smartytalent/openai-tools 0.1.33-dev.46 → 0.1.33-dev.48
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 +52 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -16469,6 +16469,24 @@
|
|
|
16469
16469
|
"type": "string",
|
|
16470
16470
|
"description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
|
|
16471
16471
|
},
|
|
16472
|
+
"candidateName": {
|
|
16473
|
+
"type": "string",
|
|
16474
|
+
"description": "Candidate's display name, denormalised from the candidate row\nat attempt-create time. Lets the guest endpoint render\n\"Hello {name}\" without granting the guest IAM role candidate\ntable access. Snapshot - reflects the name as of attempt\ncreation; not kept in sync if the candidate is later renamed."
|
|
16475
|
+
},
|
|
16476
|
+
"candidateEmail": {
|
|
16477
|
+
"type": "string",
|
|
16478
|
+
"description": "Candidate's email, denormalised from the candidate row at\nattempt-create time. Same rationale as candidateName."
|
|
16479
|
+
},
|
|
16480
|
+
"jobTitle": {
|
|
16481
|
+
"type": "object",
|
|
16482
|
+
"additionalProperties": true,
|
|
16483
|
+
"description": "Job title denormalised from the job's multilingual title at\nattempt-create time. Multilingual dict keyed by locale\n(e.g. {\"en-US\": \"Senior Engineer\", \"pl-PL\": \"Starszy Inżynier\"});\nFE resolves against attempt.languageCode. Absent when the\nattempt has no job FK."
|
|
16484
|
+
},
|
|
16485
|
+
"assessmentTitle": {
|
|
16486
|
+
"type": "object",
|
|
16487
|
+
"additionalProperties": true,
|
|
16488
|
+
"description": "Assessment template title denormalised from the template's\nmultilingual `name` field at attempt-create time. Same shape\nas jobTitle. Filled in by the attempt DAL from the template\nif the create request omits it."
|
|
16489
|
+
},
|
|
16472
16490
|
"answers": {
|
|
16473
16491
|
"type": "array",
|
|
16474
16492
|
"description": "Candidate's answers, one per attempted question. See AnswerSchema.",
|
|
@@ -16660,6 +16678,14 @@
|
|
|
16660
16678
|
}
|
|
16661
16679
|
}
|
|
16662
16680
|
},
|
|
16681
|
+
"fileResults": {
|
|
16682
|
+
"type": "array",
|
|
16683
|
+
"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).",
|
|
16684
|
+
"items": {
|
|
16685
|
+
"type": "object",
|
|
16686
|
+
"additionalProperties": true
|
|
16687
|
+
}
|
|
16688
|
+
},
|
|
16663
16689
|
"startedAt": {
|
|
16664
16690
|
"type": "string",
|
|
16665
16691
|
"format": "date-time",
|
|
@@ -16948,6 +16974,24 @@
|
|
|
16948
16974
|
"type": "string",
|
|
16949
16975
|
"description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
|
|
16950
16976
|
},
|
|
16977
|
+
"candidateName": {
|
|
16978
|
+
"type": "string",
|
|
16979
|
+
"description": "Candidate's display name, denormalised from the candidate row\nat attempt-create time. Lets the guest endpoint render\n\"Hello {name}\" without granting the guest IAM role candidate\ntable access. Snapshot - reflects the name as of attempt\ncreation; not kept in sync if the candidate is later renamed."
|
|
16980
|
+
},
|
|
16981
|
+
"candidateEmail": {
|
|
16982
|
+
"type": "string",
|
|
16983
|
+
"description": "Candidate's email, denormalised from the candidate row at\nattempt-create time. Same rationale as candidateName."
|
|
16984
|
+
},
|
|
16985
|
+
"jobTitle": {
|
|
16986
|
+
"type": "object",
|
|
16987
|
+
"additionalProperties": true,
|
|
16988
|
+
"description": "Job title denormalised from the job's multilingual title at\nattempt-create time. Multilingual dict keyed by locale\n(e.g. {\"en-US\": \"Senior Engineer\", \"pl-PL\": \"Starszy Inżynier\"});\nFE resolves against attempt.languageCode. Absent when the\nattempt has no job FK."
|
|
16989
|
+
},
|
|
16990
|
+
"assessmentTitle": {
|
|
16991
|
+
"type": "object",
|
|
16992
|
+
"additionalProperties": true,
|
|
16993
|
+
"description": "Assessment template title denormalised from the template's\nmultilingual `name` field at attempt-create time. Same shape\nas jobTitle. Filled in by the attempt DAL from the template\nif the create request omits it."
|
|
16994
|
+
},
|
|
16951
16995
|
"answers": {
|
|
16952
16996
|
"type": "array",
|
|
16953
16997
|
"description": "Candidate's answers, one per attempted question. See AnswerSchema.",
|
|
@@ -17139,6 +17183,14 @@
|
|
|
17139
17183
|
}
|
|
17140
17184
|
}
|
|
17141
17185
|
},
|
|
17186
|
+
"fileResults": {
|
|
17187
|
+
"type": "array",
|
|
17188
|
+
"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).",
|
|
17189
|
+
"items": {
|
|
17190
|
+
"type": "object",
|
|
17191
|
+
"additionalProperties": true
|
|
17192
|
+
}
|
|
17193
|
+
},
|
|
17142
17194
|
"startedAt": {
|
|
17143
17195
|
"type": "string",
|
|
17144
17196
|
"format": "date-time",
|