@smartytalent/mcp-tools 0.1.33-dev.50 → 0.1.33-dev.51

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 +115 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -17908,6 +17908,121 @@
17908
17908
  }
17909
17909
  }
17910
17910
  },
17911
+ "relationships": {
17912
+ "title": "AttemptRelationshipsSchema",
17913
+ "type": "object",
17914
+ "properties": {
17915
+ "assessment": {
17916
+ "title": "AttemptRelationshipsAssessmentSchema",
17917
+ "type": "object",
17918
+ "properties": {
17919
+ "data": {
17920
+ "title": "AttemptRelationshipsAssessmentDataSchema",
17921
+ "type": "object",
17922
+ "properties": {
17923
+ "type": {
17924
+ "type": "string",
17925
+ "enum": [
17926
+ "assessments"
17927
+ ]
17928
+ },
17929
+ "id": {
17930
+ "type": "string"
17931
+ }
17932
+ }
17933
+ }
17934
+ },
17935
+ "description": "FK to the template this attempt is a run of."
17936
+ },
17937
+ "candidate": {
17938
+ "title": "AttemptRelationshipsCandidateSchema",
17939
+ "type": "object",
17940
+ "properties": {
17941
+ "data": {
17942
+ "title": "AttemptRelationshipsCandidateDataSchema",
17943
+ "type": "object",
17944
+ "properties": {
17945
+ "type": {
17946
+ "type": "string",
17947
+ "enum": [
17948
+ "candidates"
17949
+ ]
17950
+ },
17951
+ "id": {
17952
+ "type": "string"
17953
+ }
17954
+ }
17955
+ }
17956
+ }
17957
+ },
17958
+ "job": {
17959
+ "title": "AttemptRelationshipsJobSchema",
17960
+ "type": "object",
17961
+ "properties": {
17962
+ "data": {
17963
+ "title": "AttemptRelationshipsJobDataSchema",
17964
+ "type": "object",
17965
+ "properties": {
17966
+ "type": {
17967
+ "type": "string",
17968
+ "enum": [
17969
+ "jobs"
17970
+ ]
17971
+ },
17972
+ "id": {
17973
+ "type": "string"
17974
+ }
17975
+ }
17976
+ }
17977
+ },
17978
+ "description": "Denormalised from the assessment template - the role this attempt is screening for."
17979
+ },
17980
+ "report": {
17981
+ "title": "AttemptRelationshipsReportSchema",
17982
+ "type": "object",
17983
+ "properties": {
17984
+ "data": {
17985
+ "title": "AttemptRelationshipsReportDataSchema",
17986
+ "type": "object",
17987
+ "properties": {
17988
+ "type": {
17989
+ "type": "string",
17990
+ "enum": [
17991
+ "files"
17992
+ ]
17993
+ },
17994
+ "id": {
17995
+ "type": "string"
17996
+ }
17997
+ }
17998
+ }
17999
+ },
18000
+ "description": "Generated PDF report for this attempt's evaluation. Populated post-evaluation."
18001
+ },
18002
+ "files": {
18003
+ "title": "AttemptRelationshipsFilesSchema",
18004
+ "type": "object",
18005
+ "description": "FileResources attached to this attempt - one per file the\ncandidate uploaded as a `file-upload` or `video-recording`\nanswer. Populated by the workflow's `trigger_evaluation`\nstep after `process_attachments` registers each file with\nthe file service. Use `?include=files` on `showAttempt` /\n`showGuestAttempt` to sideload the FileResources in\n`included[]` (single round-trip preview).\nThe answer-to-file mapping lives on `FileResource.meta.questionId`\n(set at `file:process` time), not on AnswerFileSchema -\nrelated-resource IDs in attributes would violate JSON:API.",
18006
+ "properties": {
18007
+ "data": {
18008
+ "type": "array",
18009
+ "items": {
18010
+ "title": "AttemptRelationshipsFilesDataSchema",
18011
+ "type": "object",
18012
+ "properties": {
18013
+ "type": {
18014
+ "type": "string"
18015
+ },
18016
+ "id": {
18017
+ "type": "string"
18018
+ }
18019
+ }
18020
+ }
18021
+ }
18022
+ }
18023
+ }
18024
+ }
18025
+ },
17911
18026
  "meta": {
17912
18027
  "type": "object",
17913
18028
  "description": "Free-form metadata. The assessment workflow uses\nmeta.runContext to stash the runId/shardId of the\nparking long-running step so the eventbus resumer\ncan wake the workflow on ATTEMPT_SUBMITTED.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.50",
3
+ "version": "0.1.33-dev.51",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",