@smartytalent/mcp-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.
Files changed (2) hide show
  1. package/dist/tools.json +52 -0
  2. 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.",
@@ -17198,6 +17216,14 @@
17198
17216
  }
17199
17217
  }
17200
17218
  },
17219
+ "fileResults": {
17220
+ "type": "array",
17221
+ "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).",
17222
+ "items": {
17223
+ "type": "object",
17224
+ "additionalProperties": true
17225
+ }
17226
+ },
17201
17227
  "startedAt": {
17202
17228
  "type": "string",
17203
17229
  "format": "date-time",
@@ -17494,6 +17520,24 @@
17494
17520
  "type": "string",
17495
17521
  "description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
17496
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
+ },
17497
17541
  "answers": {
17498
17542
  "type": "array",
17499
17543
  "description": "Candidate's answers, one per attempted question. See AnswerSchema.",
@@ -17685,6 +17729,14 @@
17685
17729
  }
17686
17730
  }
17687
17731
  },
17732
+ "fileResults": {
17733
+ "type": "array",
17734
+ "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).",
17735
+ "items": {
17736
+ "type": "object",
17737
+ "additionalProperties": true
17738
+ }
17739
+ },
17688
17740
  "startedAt": {
17689
17741
  "type": "string",
17690
17742
  "format": "date-time",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.46",
3
+ "version": "0.1.33-dev.48",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",