@smartytalent/mcp-tools 0.1.33-dev.47 → 0.1.33-dev.49
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 +170 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6035,6 +6035,57 @@
|
|
|
6035
6035
|
"type": {
|
|
6036
6036
|
"type": "string"
|
|
6037
6037
|
},
|
|
6038
|
+
"kind": {
|
|
6039
|
+
"type": "string",
|
|
6040
|
+
"enum": [
|
|
6041
|
+
"image",
|
|
6042
|
+
"pdf",
|
|
6043
|
+
"video",
|
|
6044
|
+
"audio",
|
|
6045
|
+
"text",
|
|
6046
|
+
"unknown"
|
|
6047
|
+
],
|
|
6048
|
+
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6049
|
+
},
|
|
6050
|
+
"sizeBytes": {
|
|
6051
|
+
"type": "integer",
|
|
6052
|
+
"description": "File size in bytes. Stable post-upload."
|
|
6053
|
+
},
|
|
6054
|
+
"durationSeconds": {
|
|
6055
|
+
"type": "number",
|
|
6056
|
+
"description": "Duration of media files (video/audio) in seconds. Set by ffmpeg conversion. Null for non-media."
|
|
6057
|
+
},
|
|
6058
|
+
"pages": {
|
|
6059
|
+
"type": "array",
|
|
6060
|
+
"description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure - page\ndimensions don't change request-to-request. The presigned\nURL for each page render lives at\n`meta.previewUrls.pages[i]`, indexed by the same position.\nNull for non-paginated content (video, audio, single text).",
|
|
6061
|
+
"items": {
|
|
6062
|
+
"type": "object",
|
|
6063
|
+
"properties": {
|
|
6064
|
+
"page": {
|
|
6065
|
+
"type": "integer",
|
|
6066
|
+
"description": "1-indexed page number."
|
|
6067
|
+
},
|
|
6068
|
+
"width": {
|
|
6069
|
+
"type": "integer",
|
|
6070
|
+
"description": "Pixel width of the rendered page image."
|
|
6071
|
+
},
|
|
6072
|
+
"height": {
|
|
6073
|
+
"type": "integer",
|
|
6074
|
+
"description": "Pixel height of the rendered page image."
|
|
6075
|
+
}
|
|
6076
|
+
}
|
|
6077
|
+
}
|
|
6078
|
+
},
|
|
6079
|
+
"transcript": {
|
|
6080
|
+
"type": "object",
|
|
6081
|
+
"additionalProperties": true,
|
|
6082
|
+
"description": "Multilingual transcript of media content. Locale-keyed\n(e.g. {\"en-US\": \"...\", \"pl-PL\": \"...\"}). Set by ffmpeg\nextraction + downstream AI translation. Null for\nnon-media content."
|
|
6083
|
+
},
|
|
6084
|
+
"summary": {
|
|
6085
|
+
"type": "object",
|
|
6086
|
+
"additionalProperties": true,
|
|
6087
|
+
"description": "Multilingual AI-generated summary. Same shape as transcript.\nUseful for recruiter-side scan UIs that don't want to play\nback the full media."
|
|
6088
|
+
},
|
|
6038
6089
|
"timestamps": {
|
|
6039
6090
|
"title": "ResourceTimestampsSchema",
|
|
6040
6091
|
"type": "object",
|
|
@@ -6172,6 +6223,57 @@
|
|
|
6172
6223
|
"type": {
|
|
6173
6224
|
"type": "string"
|
|
6174
6225
|
},
|
|
6226
|
+
"kind": {
|
|
6227
|
+
"type": "string",
|
|
6228
|
+
"enum": [
|
|
6229
|
+
"image",
|
|
6230
|
+
"pdf",
|
|
6231
|
+
"video",
|
|
6232
|
+
"audio",
|
|
6233
|
+
"text",
|
|
6234
|
+
"unknown"
|
|
6235
|
+
],
|
|
6236
|
+
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6237
|
+
},
|
|
6238
|
+
"sizeBytes": {
|
|
6239
|
+
"type": "integer",
|
|
6240
|
+
"description": "File size in bytes. Stable post-upload."
|
|
6241
|
+
},
|
|
6242
|
+
"durationSeconds": {
|
|
6243
|
+
"type": "number",
|
|
6244
|
+
"description": "Duration of media files (video/audio) in seconds. Set by ffmpeg conversion. Null for non-media."
|
|
6245
|
+
},
|
|
6246
|
+
"pages": {
|
|
6247
|
+
"type": "array",
|
|
6248
|
+
"description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure - page\ndimensions don't change request-to-request. The presigned\nURL for each page render lives at\n`meta.previewUrls.pages[i]`, indexed by the same position.\nNull for non-paginated content (video, audio, single text).",
|
|
6249
|
+
"items": {
|
|
6250
|
+
"type": "object",
|
|
6251
|
+
"properties": {
|
|
6252
|
+
"page": {
|
|
6253
|
+
"type": "integer",
|
|
6254
|
+
"description": "1-indexed page number."
|
|
6255
|
+
},
|
|
6256
|
+
"width": {
|
|
6257
|
+
"type": "integer",
|
|
6258
|
+
"description": "Pixel width of the rendered page image."
|
|
6259
|
+
},
|
|
6260
|
+
"height": {
|
|
6261
|
+
"type": "integer",
|
|
6262
|
+
"description": "Pixel height of the rendered page image."
|
|
6263
|
+
}
|
|
6264
|
+
}
|
|
6265
|
+
}
|
|
6266
|
+
},
|
|
6267
|
+
"transcript": {
|
|
6268
|
+
"type": "object",
|
|
6269
|
+
"additionalProperties": true,
|
|
6270
|
+
"description": "Multilingual transcript of media content. Locale-keyed\n(e.g. {\"en-US\": \"...\", \"pl-PL\": \"...\"}). Set by ffmpeg\nextraction + downstream AI translation. Null for\nnon-media content."
|
|
6271
|
+
},
|
|
6272
|
+
"summary": {
|
|
6273
|
+
"type": "object",
|
|
6274
|
+
"additionalProperties": true,
|
|
6275
|
+
"description": "Multilingual AI-generated summary. Same shape as transcript.\nUseful for recruiter-side scan UIs that don't want to play\nback the full media."
|
|
6276
|
+
},
|
|
6175
6277
|
"timestamps": {
|
|
6176
6278
|
"title": "ResourceTimestampsSchema",
|
|
6177
6279
|
"type": "object",
|
|
@@ -17007,6 +17109,24 @@
|
|
|
17007
17109
|
"type": "string",
|
|
17008
17110
|
"description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
|
|
17009
17111
|
},
|
|
17112
|
+
"candidateName": {
|
|
17113
|
+
"type": "string",
|
|
17114
|
+
"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."
|
|
17115
|
+
},
|
|
17116
|
+
"candidateEmail": {
|
|
17117
|
+
"type": "string",
|
|
17118
|
+
"description": "Candidate's email, denormalised from the candidate row at\nattempt-create time. Same rationale as candidateName."
|
|
17119
|
+
},
|
|
17120
|
+
"jobTitle": {
|
|
17121
|
+
"type": "object",
|
|
17122
|
+
"additionalProperties": true,
|
|
17123
|
+
"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."
|
|
17124
|
+
},
|
|
17125
|
+
"assessmentTitle": {
|
|
17126
|
+
"type": "object",
|
|
17127
|
+
"additionalProperties": true,
|
|
17128
|
+
"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."
|
|
17129
|
+
},
|
|
17010
17130
|
"answers": {
|
|
17011
17131
|
"type": "array",
|
|
17012
17132
|
"description": "Candidate's answers, one per attempted question. See AnswerSchema.",
|
|
@@ -17348,6 +17468,28 @@
|
|
|
17348
17468
|
}
|
|
17349
17469
|
},
|
|
17350
17470
|
"description": "Generated PDF report for this attempt's evaluation. Populated post-evaluation."
|
|
17471
|
+
},
|
|
17472
|
+
"files": {
|
|
17473
|
+
"title": "AttemptRelationshipsFilesSchema",
|
|
17474
|
+
"type": "object",
|
|
17475
|
+
"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.",
|
|
17476
|
+
"properties": {
|
|
17477
|
+
"data": {
|
|
17478
|
+
"type": "array",
|
|
17479
|
+
"items": {
|
|
17480
|
+
"title": "AttemptRelationshipsFilesDataSchema",
|
|
17481
|
+
"type": "object",
|
|
17482
|
+
"properties": {
|
|
17483
|
+
"type": {
|
|
17484
|
+
"type": "string"
|
|
17485
|
+
},
|
|
17486
|
+
"id": {
|
|
17487
|
+
"type": "string"
|
|
17488
|
+
}
|
|
17489
|
+
}
|
|
17490
|
+
}
|
|
17491
|
+
}
|
|
17492
|
+
}
|
|
17351
17493
|
}
|
|
17352
17494
|
}
|
|
17353
17495
|
}
|
|
@@ -17446,7 +17588,12 @@
|
|
|
17446
17588
|
"description": "Show Attempt",
|
|
17447
17589
|
"inputSchema": {
|
|
17448
17590
|
"type": "object",
|
|
17449
|
-
"properties": {
|
|
17591
|
+
"properties": {
|
|
17592
|
+
"include": {
|
|
17593
|
+
"type": "string",
|
|
17594
|
+
"description": "Comma-separated list of relationships to sideload. Currently\nsupports `files`. Sideloaded resources land in `included[]`.\nOmit (or pass empty) for a relationships-only response."
|
|
17595
|
+
}
|
|
17596
|
+
}
|
|
17450
17597
|
},
|
|
17451
17598
|
"_meta": {
|
|
17452
17599
|
"method": "GET",
|
|
@@ -17502,6 +17649,24 @@
|
|
|
17502
17649
|
"type": "string",
|
|
17503
17650
|
"description": "Locale the candidate is taking the assessment in (e.g. 'en-US')."
|
|
17504
17651
|
},
|
|
17652
|
+
"candidateName": {
|
|
17653
|
+
"type": "string",
|
|
17654
|
+
"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."
|
|
17655
|
+
},
|
|
17656
|
+
"candidateEmail": {
|
|
17657
|
+
"type": "string",
|
|
17658
|
+
"description": "Candidate's email, denormalised from the candidate row at\nattempt-create time. Same rationale as candidateName."
|
|
17659
|
+
},
|
|
17660
|
+
"jobTitle": {
|
|
17661
|
+
"type": "object",
|
|
17662
|
+
"additionalProperties": true,
|
|
17663
|
+
"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."
|
|
17664
|
+
},
|
|
17665
|
+
"assessmentTitle": {
|
|
17666
|
+
"type": "object",
|
|
17667
|
+
"additionalProperties": true,
|
|
17668
|
+
"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."
|
|
17669
|
+
},
|
|
17505
17670
|
"answers": {
|
|
17506
17671
|
"type": "array",
|
|
17507
17672
|
"description": "Candidate's answers, one per attempted question. See AnswerSchema.",
|
|
@@ -17967,6 +18132,10 @@
|
|
|
17967
18132
|
"token": {
|
|
17968
18133
|
"type": "string",
|
|
17969
18134
|
"description": "token parameter"
|
|
18135
|
+
},
|
|
18136
|
+
"include": {
|
|
18137
|
+
"type": "string",
|
|
18138
|
+
"description": "Comma-separated list of relationships to sideload. Currently\nsupports `files`. Sideloaded resources land in `included[]`."
|
|
17970
18139
|
}
|
|
17971
18140
|
},
|
|
17972
18141
|
"required": [
|