@smartytalent/mcp-tools 0.1.33-dev.40 → 0.1.33-dev.41

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 +76 -32
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4876,12 +4876,26 @@
4876
4876
  "description": "Numeric recommendation status code"
4877
4877
  },
4878
4878
  "overallMatchRating": {
4879
- "type": "integer",
4880
- "description": "Overall match rating (0-5)"
4879
+ "oneOf": [
4880
+ {
4881
+ "type": "integer"
4882
+ },
4883
+ {
4884
+ "type": "string"
4885
+ }
4886
+ ],
4887
+ "description": "Overall match rating (0-5). Persisted as a string in DDB on\nlegacy data and as an integer on newer rows; the oneOf\naccepts both shapes so the SDK doesn't fail validation when\ndeserialising mixed-vintage candidates."
4881
4888
  },
4882
4889
  "prevOverallMatchRating": {
4883
- "type": "integer",
4884
- "description": "Previous overall match rating before recalculation"
4890
+ "oneOf": [
4891
+ {
4892
+ "type": "integer"
4893
+ },
4894
+ {
4895
+ "type": "string"
4896
+ }
4897
+ ],
4898
+ "description": "Previous overall match rating before recalculation. Same\nint/string ambivalence as overallMatchRating - oneOf\naccepts both."
4885
4899
  },
4886
4900
  "ttl": {
4887
4901
  "type": "string",
@@ -4950,44 +4964,52 @@
4950
4964
  },
4951
4965
  "rejectionTicket": {
4952
4966
  "type": "object",
4953
- "description": "Language-keyed rejection ticket text",
4967
+ "description": "Language-keyed rejection ticket. AI populates this as an\nobject with isAssumed/description/etc keys, not a plain\nstring - additionalProperties accepts arbitrary shape.",
4954
4968
  "additionalProperties": {
4955
- "type": "string"
4969
+ "type": "object",
4970
+ "additionalProperties": true
4956
4971
  }
4957
4972
  },
4958
4973
  "recommendationStatus": {
4959
4974
  "type": "object",
4960
- "description": "Language-keyed recommendation status",
4975
+ "description": "Language-keyed recommendation status (scalar string per locale)",
4961
4976
  "additionalProperties": {
4962
- "type": "object"
4977
+ "type": "string"
4963
4978
  }
4964
4979
  },
4965
4980
  "overallAssessment": {
4966
4981
  "type": "object",
4967
- "description": "Language-keyed overall assessment",
4982
+ "description": "Language-keyed overall assessment (scalar string per locale)",
4968
4983
  "additionalProperties": {
4969
- "type": "object"
4984
+ "type": "string"
4970
4985
  }
4971
4986
  },
4972
4987
  "nextSteps": {
4973
4988
  "type": "object",
4974
- "description": "Language-keyed next steps recommendations",
4989
+ "description": "Language-keyed next-steps recommendations (array of strings per locale)",
4975
4990
  "additionalProperties": {
4976
- "type": "object"
4991
+ "type": "array",
4992
+ "items": {
4993
+ "type": "string"
4994
+ }
4977
4995
  }
4978
4996
  },
4979
4997
  "insightsAndAnalysis": {
4980
4998
  "type": "object",
4981
- "description": "Language-keyed insights and analysis",
4999
+ "description": "Language-keyed insights and analysis (free-form object per locale)",
4982
5000
  "additionalProperties": {
4983
- "type": "object"
5001
+ "type": "object",
5002
+ "additionalProperties": true
4984
5003
  }
4985
5004
  },
4986
5005
  "keywords": {
4987
5006
  "type": "object",
4988
- "description": "Language-keyed extracted keywords",
5007
+ "description": "Language-keyed extracted keywords (array of strings per locale)",
4989
5008
  "additionalProperties": {
4990
- "type": "object"
5009
+ "type": "array",
5010
+ "items": {
5011
+ "type": "string"
5012
+ }
4991
5013
  }
4992
5014
  },
4993
5015
  "availability": {
@@ -5427,12 +5449,26 @@
5427
5449
  "description": "Numeric recommendation status code"
5428
5450
  },
5429
5451
  "overallMatchRating": {
5430
- "type": "integer",
5431
- "description": "Overall match rating (0-5)"
5452
+ "oneOf": [
5453
+ {
5454
+ "type": "integer"
5455
+ },
5456
+ {
5457
+ "type": "string"
5458
+ }
5459
+ ],
5460
+ "description": "Overall match rating (0-5). Persisted as a string in DDB on\nlegacy data and as an integer on newer rows; the oneOf\naccepts both shapes so the SDK doesn't fail validation when\ndeserialising mixed-vintage candidates."
5432
5461
  },
5433
5462
  "prevOverallMatchRating": {
5434
- "type": "integer",
5435
- "description": "Previous overall match rating before recalculation"
5463
+ "oneOf": [
5464
+ {
5465
+ "type": "integer"
5466
+ },
5467
+ {
5468
+ "type": "string"
5469
+ }
5470
+ ],
5471
+ "description": "Previous overall match rating before recalculation. Same\nint/string ambivalence as overallMatchRating - oneOf\naccepts both."
5436
5472
  },
5437
5473
  "ttl": {
5438
5474
  "type": "string",
@@ -5501,44 +5537,52 @@
5501
5537
  },
5502
5538
  "rejectionTicket": {
5503
5539
  "type": "object",
5504
- "description": "Language-keyed rejection ticket text",
5540
+ "description": "Language-keyed rejection ticket. AI populates this as an\nobject with isAssumed/description/etc keys, not a plain\nstring - additionalProperties accepts arbitrary shape.",
5505
5541
  "additionalProperties": {
5506
- "type": "string"
5542
+ "type": "object",
5543
+ "additionalProperties": true
5507
5544
  }
5508
5545
  },
5509
5546
  "recommendationStatus": {
5510
5547
  "type": "object",
5511
- "description": "Language-keyed recommendation status",
5548
+ "description": "Language-keyed recommendation status (scalar string per locale)",
5512
5549
  "additionalProperties": {
5513
- "type": "object"
5550
+ "type": "string"
5514
5551
  }
5515
5552
  },
5516
5553
  "overallAssessment": {
5517
5554
  "type": "object",
5518
- "description": "Language-keyed overall assessment",
5555
+ "description": "Language-keyed overall assessment (scalar string per locale)",
5519
5556
  "additionalProperties": {
5520
- "type": "object"
5557
+ "type": "string"
5521
5558
  }
5522
5559
  },
5523
5560
  "nextSteps": {
5524
5561
  "type": "object",
5525
- "description": "Language-keyed next steps recommendations",
5562
+ "description": "Language-keyed next-steps recommendations (array of strings per locale)",
5526
5563
  "additionalProperties": {
5527
- "type": "object"
5564
+ "type": "array",
5565
+ "items": {
5566
+ "type": "string"
5567
+ }
5528
5568
  }
5529
5569
  },
5530
5570
  "insightsAndAnalysis": {
5531
5571
  "type": "object",
5532
- "description": "Language-keyed insights and analysis",
5572
+ "description": "Language-keyed insights and analysis (free-form object per locale)",
5533
5573
  "additionalProperties": {
5534
- "type": "object"
5574
+ "type": "object",
5575
+ "additionalProperties": true
5535
5576
  }
5536
5577
  },
5537
5578
  "keywords": {
5538
5579
  "type": "object",
5539
- "description": "Language-keyed extracted keywords",
5580
+ "description": "Language-keyed extracted keywords (array of strings per locale)",
5540
5581
  "additionalProperties": {
5541
- "type": "object"
5582
+ "type": "array",
5583
+ "items": {
5584
+ "type": "string"
5585
+ }
5542
5586
  }
5543
5587
  },
5544
5588
  "availability": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.40",
3
+ "version": "0.1.33-dev.41",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",