@smartytalent/mcp-tools 0.1.33-dev.47 → 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 +36 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -17007,6 +17007,24 @@
|
|
|
17007
17007
|
"type": "string",
|
|
17008
17008
|
"description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
|
|
17009
17009
|
},
|
|
17010
|
+
"candidateName": {
|
|
17011
|
+
"type": "string",
|
|
17012
|
+
"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."
|
|
17013
|
+
},
|
|
17014
|
+
"candidateEmail": {
|
|
17015
|
+
"type": "string",
|
|
17016
|
+
"description": "Candidate's email, denormalised from the candidate row at\nattempt-create time. Same rationale as candidateName."
|
|
17017
|
+
},
|
|
17018
|
+
"jobTitle": {
|
|
17019
|
+
"type": "object",
|
|
17020
|
+
"additionalProperties": true,
|
|
17021
|
+
"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."
|
|
17022
|
+
},
|
|
17023
|
+
"assessmentTitle": {
|
|
17024
|
+
"type": "object",
|
|
17025
|
+
"additionalProperties": true,
|
|
17026
|
+
"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."
|
|
17027
|
+
},
|
|
17010
17028
|
"answers": {
|
|
17011
17029
|
"type": "array",
|
|
17012
17030
|
"description": "Candidate's answers, one per attempted question. See AnswerSchema.",
|
|
@@ -17502,6 +17520,24 @@
|
|
|
17502
17520
|
"type": "string",
|
|
17503
17521
|
"description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
|
|
17504
17522
|
},
|
|
17523
|
+
"candidateName": {
|
|
17524
|
+
"type": "string",
|
|
17525
|
+
"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."
|
|
17526
|
+
},
|
|
17527
|
+
"candidateEmail": {
|
|
17528
|
+
"type": "string",
|
|
17529
|
+
"description": "Candidate's email, denormalised from the candidate row at\nattempt-create time. Same rationale as candidateName."
|
|
17530
|
+
},
|
|
17531
|
+
"jobTitle": {
|
|
17532
|
+
"type": "object",
|
|
17533
|
+
"additionalProperties": true,
|
|
17534
|
+
"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."
|
|
17535
|
+
},
|
|
17536
|
+
"assessmentTitle": {
|
|
17537
|
+
"type": "object",
|
|
17538
|
+
"additionalProperties": true,
|
|
17539
|
+
"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."
|
|
17540
|
+
},
|
|
17505
17541
|
"answers": {
|
|
17506
17542
|
"type": "array",
|
|
17507
17543
|
"description": "Candidate's answers, one per attempted question. See AnswerSchema.",
|