@smartytalent/mcp-tools 0.1.33-dev.40 → 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 +164 -32
- 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
|
-
"
|
|
4880
|
-
|
|
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
|
-
"
|
|
4884
|
-
|
|
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,96 @@
|
|
|
4950
4964
|
},
|
|
4951
4965
|
"rejectionTicket": {
|
|
4952
4966
|
"type": "object",
|
|
4953
|
-
"description": "Language-keyed rejection ticket
|
|
4967
|
+
"description": "Language-keyed rejection ticket. Pre-AI: empty string per\nlocale. Post-AI: object with isAssumed / description /\nstatus / category / etc keys.",
|
|
4954
4968
|
"additionalProperties": {
|
|
4955
|
-
"
|
|
4969
|
+
"oneOf": [
|
|
4970
|
+
{
|
|
4971
|
+
"type": "string"
|
|
4972
|
+
},
|
|
4973
|
+
{
|
|
4974
|
+
"type": "object",
|
|
4975
|
+
"additionalProperties": true
|
|
4976
|
+
}
|
|
4977
|
+
]
|
|
4956
4978
|
}
|
|
4957
4979
|
},
|
|
4958
4980
|
"recommendationStatus": {
|
|
4959
4981
|
"type": "object",
|
|
4960
|
-
"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.",
|
|
4961
4983
|
"additionalProperties": {
|
|
4962
|
-
"
|
|
4984
|
+
"oneOf": [
|
|
4985
|
+
{
|
|
4986
|
+
"type": "string"
|
|
4987
|
+
},
|
|
4988
|
+
{
|
|
4989
|
+
"type": "object",
|
|
4990
|
+
"additionalProperties": true
|
|
4991
|
+
}
|
|
4992
|
+
]
|
|
4963
4993
|
}
|
|
4964
4994
|
},
|
|
4965
4995
|
"overallAssessment": {
|
|
4966
4996
|
"type": "object",
|
|
4967
|
-
"description": "Language-keyed overall assessment",
|
|
4997
|
+
"description": "Language-keyed overall assessment. Pre-AI: empty string.\nPost-AI: long-form scalar string per locale.",
|
|
4968
4998
|
"additionalProperties": {
|
|
4969
|
-
"
|
|
4999
|
+
"oneOf": [
|
|
5000
|
+
{
|
|
5001
|
+
"type": "string"
|
|
5002
|
+
},
|
|
5003
|
+
{
|
|
5004
|
+
"type": "object",
|
|
5005
|
+
"additionalProperties": true
|
|
5006
|
+
}
|
|
5007
|
+
]
|
|
4970
5008
|
}
|
|
4971
5009
|
},
|
|
4972
5010
|
"nextSteps": {
|
|
4973
5011
|
"type": "object",
|
|
4974
|
-
"description": "Language-keyed next
|
|
5012
|
+
"description": "Language-keyed next-steps recommendations. Pre-AI: empty\nstring. Post-AI: array of strings per locale.",
|
|
4975
5013
|
"additionalProperties": {
|
|
4976
|
-
"
|
|
5014
|
+
"oneOf": [
|
|
5015
|
+
{
|
|
5016
|
+
"type": "string"
|
|
5017
|
+
},
|
|
5018
|
+
{
|
|
5019
|
+
"type": "array",
|
|
5020
|
+
"items": {
|
|
5021
|
+
"type": "string"
|
|
5022
|
+
}
|
|
5023
|
+
}
|
|
5024
|
+
]
|
|
4977
5025
|
}
|
|
4978
5026
|
},
|
|
4979
5027
|
"insightsAndAnalysis": {
|
|
4980
5028
|
"type": "object",
|
|
4981
|
-
"description": "Language-keyed insights and analysis",
|
|
5029
|
+
"description": "Language-keyed insights and analysis. Pre-AI: empty string.\nPost-AI: free-form object per locale.",
|
|
4982
5030
|
"additionalProperties": {
|
|
4983
|
-
"
|
|
5031
|
+
"oneOf": [
|
|
5032
|
+
{
|
|
5033
|
+
"type": "string"
|
|
5034
|
+
},
|
|
5035
|
+
{
|
|
5036
|
+
"type": "object",
|
|
5037
|
+
"additionalProperties": true
|
|
5038
|
+
}
|
|
5039
|
+
]
|
|
4984
5040
|
}
|
|
4985
5041
|
},
|
|
4986
5042
|
"keywords": {
|
|
4987
5043
|
"type": "object",
|
|
4988
|
-
"description": "Language-keyed extracted keywords",
|
|
5044
|
+
"description": "Language-keyed extracted keywords. Pre-AI: empty string.\nPost-AI: array of strings per locale.",
|
|
4989
5045
|
"additionalProperties": {
|
|
4990
|
-
"
|
|
5046
|
+
"oneOf": [
|
|
5047
|
+
{
|
|
5048
|
+
"type": "string"
|
|
5049
|
+
},
|
|
5050
|
+
{
|
|
5051
|
+
"type": "array",
|
|
5052
|
+
"items": {
|
|
5053
|
+
"type": "string"
|
|
5054
|
+
}
|
|
5055
|
+
}
|
|
5056
|
+
]
|
|
4991
5057
|
}
|
|
4992
5058
|
},
|
|
4993
5059
|
"availability": {
|
|
@@ -5427,12 +5493,26 @@
|
|
|
5427
5493
|
"description": "Numeric recommendation status code"
|
|
5428
5494
|
},
|
|
5429
5495
|
"overallMatchRating": {
|
|
5430
|
-
"
|
|
5431
|
-
|
|
5496
|
+
"oneOf": [
|
|
5497
|
+
{
|
|
5498
|
+
"type": "integer"
|
|
5499
|
+
},
|
|
5500
|
+
{
|
|
5501
|
+
"type": "string"
|
|
5502
|
+
}
|
|
5503
|
+
],
|
|
5504
|
+
"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
5505
|
},
|
|
5433
5506
|
"prevOverallMatchRating": {
|
|
5434
|
-
"
|
|
5435
|
-
|
|
5507
|
+
"oneOf": [
|
|
5508
|
+
{
|
|
5509
|
+
"type": "integer"
|
|
5510
|
+
},
|
|
5511
|
+
{
|
|
5512
|
+
"type": "string"
|
|
5513
|
+
}
|
|
5514
|
+
],
|
|
5515
|
+
"description": "Previous overall match rating before recalculation. Same\nint/string ambivalence as overallMatchRating - oneOf\naccepts both."
|
|
5436
5516
|
},
|
|
5437
5517
|
"ttl": {
|
|
5438
5518
|
"type": "string",
|
|
@@ -5501,44 +5581,96 @@
|
|
|
5501
5581
|
},
|
|
5502
5582
|
"rejectionTicket": {
|
|
5503
5583
|
"type": "object",
|
|
5504
|
-
"description": "Language-keyed rejection ticket
|
|
5584
|
+
"description": "Language-keyed rejection ticket. Pre-AI: empty string per\nlocale. Post-AI: object with isAssumed / description /\nstatus / category / etc keys.",
|
|
5505
5585
|
"additionalProperties": {
|
|
5506
|
-
"
|
|
5586
|
+
"oneOf": [
|
|
5587
|
+
{
|
|
5588
|
+
"type": "string"
|
|
5589
|
+
},
|
|
5590
|
+
{
|
|
5591
|
+
"type": "object",
|
|
5592
|
+
"additionalProperties": true
|
|
5593
|
+
}
|
|
5594
|
+
]
|
|
5507
5595
|
}
|
|
5508
5596
|
},
|
|
5509
5597
|
"recommendationStatus": {
|
|
5510
5598
|
"type": "object",
|
|
5511
|
-
"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.",
|
|
5512
5600
|
"additionalProperties": {
|
|
5513
|
-
"
|
|
5601
|
+
"oneOf": [
|
|
5602
|
+
{
|
|
5603
|
+
"type": "string"
|
|
5604
|
+
},
|
|
5605
|
+
{
|
|
5606
|
+
"type": "object",
|
|
5607
|
+
"additionalProperties": true
|
|
5608
|
+
}
|
|
5609
|
+
]
|
|
5514
5610
|
}
|
|
5515
5611
|
},
|
|
5516
5612
|
"overallAssessment": {
|
|
5517
5613
|
"type": "object",
|
|
5518
|
-
"description": "Language-keyed overall assessment",
|
|
5614
|
+
"description": "Language-keyed overall assessment. Pre-AI: empty string.\nPost-AI: long-form scalar string per locale.",
|
|
5519
5615
|
"additionalProperties": {
|
|
5520
|
-
"
|
|
5616
|
+
"oneOf": [
|
|
5617
|
+
{
|
|
5618
|
+
"type": "string"
|
|
5619
|
+
},
|
|
5620
|
+
{
|
|
5621
|
+
"type": "object",
|
|
5622
|
+
"additionalProperties": true
|
|
5623
|
+
}
|
|
5624
|
+
]
|
|
5521
5625
|
}
|
|
5522
5626
|
},
|
|
5523
5627
|
"nextSteps": {
|
|
5524
5628
|
"type": "object",
|
|
5525
|
-
"description": "Language-keyed next
|
|
5629
|
+
"description": "Language-keyed next-steps recommendations. Pre-AI: empty\nstring. Post-AI: array of strings per locale.",
|
|
5526
5630
|
"additionalProperties": {
|
|
5527
|
-
"
|
|
5631
|
+
"oneOf": [
|
|
5632
|
+
{
|
|
5633
|
+
"type": "string"
|
|
5634
|
+
},
|
|
5635
|
+
{
|
|
5636
|
+
"type": "array",
|
|
5637
|
+
"items": {
|
|
5638
|
+
"type": "string"
|
|
5639
|
+
}
|
|
5640
|
+
}
|
|
5641
|
+
]
|
|
5528
5642
|
}
|
|
5529
5643
|
},
|
|
5530
5644
|
"insightsAndAnalysis": {
|
|
5531
5645
|
"type": "object",
|
|
5532
|
-
"description": "Language-keyed insights and analysis",
|
|
5646
|
+
"description": "Language-keyed insights and analysis. Pre-AI: empty string.\nPost-AI: free-form object per locale.",
|
|
5533
5647
|
"additionalProperties": {
|
|
5534
|
-
"
|
|
5648
|
+
"oneOf": [
|
|
5649
|
+
{
|
|
5650
|
+
"type": "string"
|
|
5651
|
+
},
|
|
5652
|
+
{
|
|
5653
|
+
"type": "object",
|
|
5654
|
+
"additionalProperties": true
|
|
5655
|
+
}
|
|
5656
|
+
]
|
|
5535
5657
|
}
|
|
5536
5658
|
},
|
|
5537
5659
|
"keywords": {
|
|
5538
5660
|
"type": "object",
|
|
5539
|
-
"description": "Language-keyed extracted keywords",
|
|
5661
|
+
"description": "Language-keyed extracted keywords. Pre-AI: empty string.\nPost-AI: array of strings per locale.",
|
|
5540
5662
|
"additionalProperties": {
|
|
5541
|
-
"
|
|
5663
|
+
"oneOf": [
|
|
5664
|
+
{
|
|
5665
|
+
"type": "string"
|
|
5666
|
+
},
|
|
5667
|
+
{
|
|
5668
|
+
"type": "array",
|
|
5669
|
+
"items": {
|
|
5670
|
+
"type": "string"
|
|
5671
|
+
}
|
|
5672
|
+
}
|
|
5673
|
+
]
|
|
5542
5674
|
}
|
|
5543
5675
|
},
|
|
5544
5676
|
"availability": {
|