@smartytalent/mcp-tools 0.1.22 → 0.1.24

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 +24 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7726,9 +7726,15 @@
7726
7726
  "language": {
7727
7727
  "type": "string"
7728
7728
  },
7729
+ "qualityScore": {
7730
+ "type": "integer",
7731
+ "minimum": 1,
7732
+ "maximum": 5,
7733
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
7734
+ },
7729
7735
  "fields": {
7730
7736
  "type": "object",
7731
- "description": "Custom form field answers keyed by field identifier"
7737
+ "description": "Form fields keyed by field identifier. Each field contains localized content grouped by language code. Structure: {fieldKey: {langCode: {label, description, value, type, relevance, clarity, completeness, confidence, reasoning}}}."
7732
7738
  },
7733
7739
  "files": {
7734
7740
  "type": "array",
@@ -8005,7 +8011,8 @@
8005
8011
  }
8006
8012
  },
8007
8013
  "fields": {
8008
- "type": "object"
8014
+ "type": "object",
8015
+ "description": "Form fields keyed by identifier. Each field: {label: string, description: string, value: string, type: 'text'|'number'|'date'|'select'|'checkbox'}."
8009
8016
  },
8010
8017
  "language": {
8011
8018
  "type": "string"
@@ -8013,6 +8020,14 @@
8013
8020
  "jobId": {
8014
8021
  "type": "string"
8015
8022
  },
8023
+ "type": {
8024
+ "type": "string",
8025
+ "enum": [
8026
+ "candidate",
8027
+ "talent"
8028
+ ],
8029
+ "description": "Submission type — determines which workflow to trigger. Auto-derived from jobId if omitted."
8030
+ },
8016
8031
  "referral": {
8017
8032
  "type": "object",
8018
8033
  "properties": {
@@ -8204,9 +8219,15 @@
8204
8219
  "language": {
8205
8220
  "type": "string"
8206
8221
  },
8222
+ "qualityScore": {
8223
+ "type": "integer",
8224
+ "minimum": 1,
8225
+ "maximum": 5,
8226
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
8227
+ },
8207
8228
  "fields": {
8208
8229
  "type": "object",
8209
- "description": "Custom form field answers keyed by field identifier"
8230
+ "description": "Form fields keyed by field identifier. Each field contains localized content grouped by language code. Structure: {fieldKey: {langCode: {label, description, value, type, relevance, clarity, completeness, confidence, reasoning}}}."
8210
8231
  },
8211
8232
  "files": {
8212
8233
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",