@smartytalent/mcp-tools 0.1.33-dev.41 → 0.1.33-dev.42
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 +128 -40
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -4964,52 +4964,96 @@
|
|
|
4964
4964
|
},
|
|
4965
4965
|
"rejectionTicket": {
|
|
4966
4966
|
"type": "object",
|
|
4967
|
-
"description": "Language-keyed rejection ticket. AI
|
|
4967
|
+
"description": "Language-keyed rejection ticket. Pre-AI: empty string per\nlocale. Post-AI: object with isAssumed / description /\nstatus / category / etc keys.",
|
|
4968
4968
|
"additionalProperties": {
|
|
4969
|
-
"
|
|
4970
|
-
|
|
4969
|
+
"oneOf": [
|
|
4970
|
+
{
|
|
4971
|
+
"type": "string"
|
|
4972
|
+
},
|
|
4973
|
+
{
|
|
4974
|
+
"type": "object",
|
|
4975
|
+
"additionalProperties": true
|
|
4976
|
+
}
|
|
4977
|
+
]
|
|
4971
4978
|
}
|
|
4972
4979
|
},
|
|
4973
4980
|
"recommendationStatus": {
|
|
4974
4981
|
"type": "object",
|
|
4975
|
-
"description": "Language-keyed recommendation status
|
|
4982
|
+
"description": "Language-keyed recommendation status. Pre-AI: empty string.\nPost-AI: scalar string (\"Recommended\", \"Not Recommended\", ...)\non legacy data; some tenants persist it as an object.",
|
|
4976
4983
|
"additionalProperties": {
|
|
4977
|
-
"
|
|
4984
|
+
"oneOf": [
|
|
4985
|
+
{
|
|
4986
|
+
"type": "string"
|
|
4987
|
+
},
|
|
4988
|
+
{
|
|
4989
|
+
"type": "object",
|
|
4990
|
+
"additionalProperties": true
|
|
4991
|
+
}
|
|
4992
|
+
]
|
|
4978
4993
|
}
|
|
4979
4994
|
},
|
|
4980
4995
|
"overallAssessment": {
|
|
4981
4996
|
"type": "object",
|
|
4982
|
-
"description": "Language-keyed overall assessment
|
|
4997
|
+
"description": "Language-keyed overall assessment. Pre-AI: empty string.\nPost-AI: long-form scalar string per locale.",
|
|
4983
4998
|
"additionalProperties": {
|
|
4984
|
-
"
|
|
4999
|
+
"oneOf": [
|
|
5000
|
+
{
|
|
5001
|
+
"type": "string"
|
|
5002
|
+
},
|
|
5003
|
+
{
|
|
5004
|
+
"type": "object",
|
|
5005
|
+
"additionalProperties": true
|
|
5006
|
+
}
|
|
5007
|
+
]
|
|
4985
5008
|
}
|
|
4986
5009
|
},
|
|
4987
5010
|
"nextSteps": {
|
|
4988
5011
|
"type": "object",
|
|
4989
|
-
"description": "Language-keyed next-steps recommendations
|
|
5012
|
+
"description": "Language-keyed next-steps recommendations. Pre-AI: empty\nstring. Post-AI: array of strings per locale.",
|
|
4990
5013
|
"additionalProperties": {
|
|
4991
|
-
"
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
5014
|
+
"oneOf": [
|
|
5015
|
+
{
|
|
5016
|
+
"type": "string"
|
|
5017
|
+
},
|
|
5018
|
+
{
|
|
5019
|
+
"type": "array",
|
|
5020
|
+
"items": {
|
|
5021
|
+
"type": "string"
|
|
5022
|
+
}
|
|
5023
|
+
}
|
|
5024
|
+
]
|
|
4995
5025
|
}
|
|
4996
5026
|
},
|
|
4997
5027
|
"insightsAndAnalysis": {
|
|
4998
5028
|
"type": "object",
|
|
4999
|
-
"description": "Language-keyed insights and analysis
|
|
5029
|
+
"description": "Language-keyed insights and analysis. Pre-AI: empty string.\nPost-AI: free-form object per locale.",
|
|
5000
5030
|
"additionalProperties": {
|
|
5001
|
-
"
|
|
5002
|
-
|
|
5031
|
+
"oneOf": [
|
|
5032
|
+
{
|
|
5033
|
+
"type": "string"
|
|
5034
|
+
},
|
|
5035
|
+
{
|
|
5036
|
+
"type": "object",
|
|
5037
|
+
"additionalProperties": true
|
|
5038
|
+
}
|
|
5039
|
+
]
|
|
5003
5040
|
}
|
|
5004
5041
|
},
|
|
5005
5042
|
"keywords": {
|
|
5006
5043
|
"type": "object",
|
|
5007
|
-
"description": "Language-keyed extracted keywords
|
|
5044
|
+
"description": "Language-keyed extracted keywords. Pre-AI: empty string.\nPost-AI: array of strings per locale.",
|
|
5008
5045
|
"additionalProperties": {
|
|
5009
|
-
"
|
|
5010
|
-
|
|
5011
|
-
|
|
5012
|
-
|
|
5046
|
+
"oneOf": [
|
|
5047
|
+
{
|
|
5048
|
+
"type": "string"
|
|
5049
|
+
},
|
|
5050
|
+
{
|
|
5051
|
+
"type": "array",
|
|
5052
|
+
"items": {
|
|
5053
|
+
"type": "string"
|
|
5054
|
+
}
|
|
5055
|
+
}
|
|
5056
|
+
]
|
|
5013
5057
|
}
|
|
5014
5058
|
},
|
|
5015
5059
|
"availability": {
|
|
@@ -5537,52 +5581,96 @@
|
|
|
5537
5581
|
},
|
|
5538
5582
|
"rejectionTicket": {
|
|
5539
5583
|
"type": "object",
|
|
5540
|
-
"description": "Language-keyed rejection ticket. AI
|
|
5584
|
+
"description": "Language-keyed rejection ticket. Pre-AI: empty string per\nlocale. Post-AI: object with isAssumed / description /\nstatus / category / etc keys.",
|
|
5541
5585
|
"additionalProperties": {
|
|
5542
|
-
"
|
|
5543
|
-
|
|
5586
|
+
"oneOf": [
|
|
5587
|
+
{
|
|
5588
|
+
"type": "string"
|
|
5589
|
+
},
|
|
5590
|
+
{
|
|
5591
|
+
"type": "object",
|
|
5592
|
+
"additionalProperties": true
|
|
5593
|
+
}
|
|
5594
|
+
]
|
|
5544
5595
|
}
|
|
5545
5596
|
},
|
|
5546
5597
|
"recommendationStatus": {
|
|
5547
5598
|
"type": "object",
|
|
5548
|
-
"description": "Language-keyed recommendation status
|
|
5599
|
+
"description": "Language-keyed recommendation status. Pre-AI: empty string.\nPost-AI: scalar string (\"Recommended\", \"Not Recommended\", ...)\non legacy data; some tenants persist it as an object.",
|
|
5549
5600
|
"additionalProperties": {
|
|
5550
|
-
"
|
|
5601
|
+
"oneOf": [
|
|
5602
|
+
{
|
|
5603
|
+
"type": "string"
|
|
5604
|
+
},
|
|
5605
|
+
{
|
|
5606
|
+
"type": "object",
|
|
5607
|
+
"additionalProperties": true
|
|
5608
|
+
}
|
|
5609
|
+
]
|
|
5551
5610
|
}
|
|
5552
5611
|
},
|
|
5553
5612
|
"overallAssessment": {
|
|
5554
5613
|
"type": "object",
|
|
5555
|
-
"description": "Language-keyed overall assessment
|
|
5614
|
+
"description": "Language-keyed overall assessment. Pre-AI: empty string.\nPost-AI: long-form scalar string per locale.",
|
|
5556
5615
|
"additionalProperties": {
|
|
5557
|
-
"
|
|
5616
|
+
"oneOf": [
|
|
5617
|
+
{
|
|
5618
|
+
"type": "string"
|
|
5619
|
+
},
|
|
5620
|
+
{
|
|
5621
|
+
"type": "object",
|
|
5622
|
+
"additionalProperties": true
|
|
5623
|
+
}
|
|
5624
|
+
]
|
|
5558
5625
|
}
|
|
5559
5626
|
},
|
|
5560
5627
|
"nextSteps": {
|
|
5561
5628
|
"type": "object",
|
|
5562
|
-
"description": "Language-keyed next-steps recommendations
|
|
5629
|
+
"description": "Language-keyed next-steps recommendations. Pre-AI: empty\nstring. Post-AI: array of strings per locale.",
|
|
5563
5630
|
"additionalProperties": {
|
|
5564
|
-
"
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5631
|
+
"oneOf": [
|
|
5632
|
+
{
|
|
5633
|
+
"type": "string"
|
|
5634
|
+
},
|
|
5635
|
+
{
|
|
5636
|
+
"type": "array",
|
|
5637
|
+
"items": {
|
|
5638
|
+
"type": "string"
|
|
5639
|
+
}
|
|
5640
|
+
}
|
|
5641
|
+
]
|
|
5568
5642
|
}
|
|
5569
5643
|
},
|
|
5570
5644
|
"insightsAndAnalysis": {
|
|
5571
5645
|
"type": "object",
|
|
5572
|
-
"description": "Language-keyed insights and analysis
|
|
5646
|
+
"description": "Language-keyed insights and analysis. Pre-AI: empty string.\nPost-AI: free-form object per locale.",
|
|
5573
5647
|
"additionalProperties": {
|
|
5574
|
-
"
|
|
5575
|
-
|
|
5648
|
+
"oneOf": [
|
|
5649
|
+
{
|
|
5650
|
+
"type": "string"
|
|
5651
|
+
},
|
|
5652
|
+
{
|
|
5653
|
+
"type": "object",
|
|
5654
|
+
"additionalProperties": true
|
|
5655
|
+
}
|
|
5656
|
+
]
|
|
5576
5657
|
}
|
|
5577
5658
|
},
|
|
5578
5659
|
"keywords": {
|
|
5579
5660
|
"type": "object",
|
|
5580
|
-
"description": "Language-keyed extracted keywords
|
|
5661
|
+
"description": "Language-keyed extracted keywords. Pre-AI: empty string.\nPost-AI: array of strings per locale.",
|
|
5581
5662
|
"additionalProperties": {
|
|
5582
|
-
"
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5663
|
+
"oneOf": [
|
|
5664
|
+
{
|
|
5665
|
+
"type": "string"
|
|
5666
|
+
},
|
|
5667
|
+
{
|
|
5668
|
+
"type": "array",
|
|
5669
|
+
"items": {
|
|
5670
|
+
"type": "string"
|
|
5671
|
+
}
|
|
5672
|
+
}
|
|
5673
|
+
]
|
|
5586
5674
|
}
|
|
5587
5675
|
},
|
|
5588
5676
|
"availability": {
|