@smartytalent/mcp-tools 0.8.3 → 0.8.5

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 +20 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -15350,9 +15350,10 @@
15350
15350
  "properties": {
15351
15351
  "filterStatus": {
15352
15352
  "type": "string",
15353
- "description": "Returns personas with the current status (active, archived). If not provided, the default value will be set to 'active'.",
15353
+ "description": "Returns personas with this status. Defaults to `active`, which is\nthe only status a persona may be CONSUMED in. `draft` is the\nhonest in-between: the cohort exists and the profile is being\nsynthesized, but it is under the k-anonymity threshold (fewer\nthan three hires), so nothing scores or writes copy against it.\nRecruiters should be able to see that a market is building, so\nthe list has to be able to return it.",
15354
15354
  "enum": [
15355
15355
  "active",
15356
+ "draft",
15356
15357
  "archived"
15357
15358
  ]
15358
15359
  },
@@ -15446,9 +15447,17 @@
15446
15447
  },
15447
15448
  "name": {
15448
15449
  "type": "object",
15449
- "description": "Language-keyed invented name for the archetype. Written once, then stable across rebuilds.",
15450
+ "description": "Language-keyed invented name for the archetype. Stable across\nrebuilds, but regenerated when the cohort's predominant gender\nflips - the name states a gender, and that gender is a finding\nabout the cohort (see `identityGender`).",
15450
15451
  "additionalProperties": true
15451
15452
  },
15453
+ "identityGender": {
15454
+ "type": "string",
15455
+ "description": "The cohort gender the current name and picture were minted for. Diagnostic.",
15456
+ "enum": [
15457
+ "male",
15458
+ "female"
15459
+ ]
15460
+ },
15452
15461
  "profilePictureUrl": {
15453
15462
  "type": "string",
15454
15463
  "description": "Illustration for the archetype. Not a photograph of anyone."
@@ -15787,9 +15796,17 @@
15787
15796
  },
15788
15797
  "name": {
15789
15798
  "type": "object",
15790
- "description": "Language-keyed invented name for the archetype. Written once, then stable across rebuilds.",
15799
+ "description": "Language-keyed invented name for the archetype. Stable across\nrebuilds, but regenerated when the cohort's predominant gender\nflips - the name states a gender, and that gender is a finding\nabout the cohort (see `identityGender`).",
15791
15800
  "additionalProperties": true
15792
15801
  },
15802
+ "identityGender": {
15803
+ "type": "string",
15804
+ "description": "The cohort gender the current name and picture were minted for. Diagnostic.",
15805
+ "enum": [
15806
+ "male",
15807
+ "female"
15808
+ ]
15809
+ },
15793
15810
  "profilePictureUrl": {
15794
15811
  "type": "string",
15795
15812
  "description": "Illustration for the archetype. Not a photograph of anyone."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",