@smartytalent/openai-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
|
@@ -4726,12 +4726,26 @@
|
|
|
4726
4726
|
"description": "Numeric recommendation status code"
|
|
4727
4727
|
},
|
|
4728
4728
|
"overallMatchRating": {
|
|
4729
|
-
"
|
|
4730
|
-
|
|
4729
|
+
"oneOf": [
|
|
4730
|
+
{
|
|
4731
|
+
"type": "integer"
|
|
4732
|
+
},
|
|
4733
|
+
{
|
|
4734
|
+
"type": "string"
|
|
4735
|
+
}
|
|
4736
|
+
],
|
|
4737
|
+
"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."
|
|
4731
4738
|
},
|
|
4732
4739
|
"prevOverallMatchRating": {
|
|
4733
|
-
"
|
|
4734
|
-
|
|
4740
|
+
"oneOf": [
|
|
4741
|
+
{
|
|
4742
|
+
"type": "integer"
|
|
4743
|
+
},
|
|
4744
|
+
{
|
|
4745
|
+
"type": "string"
|
|
4746
|
+
}
|
|
4747
|
+
],
|
|
4748
|
+
"description": "Previous overall match rating before recalculation. Same\nint/string ambivalence as overallMatchRating - oneOf\naccepts both."
|
|
4735
4749
|
},
|
|
4736
4750
|
"ttl": {
|
|
4737
4751
|
"type": "string",
|
|
@@ -4800,44 +4814,96 @@
|
|
|
4800
4814
|
},
|
|
4801
4815
|
"rejectionTicket": {
|
|
4802
4816
|
"type": "object",
|
|
4803
|
-
"description": "Language-keyed rejection ticket
|
|
4817
|
+
"description": "Language-keyed rejection ticket. Pre-AI: empty string per\nlocale. Post-AI: object with isAssumed / description /\nstatus / category / etc keys.",
|
|
4804
4818
|
"additionalProperties": {
|
|
4805
|
-
"
|
|
4819
|
+
"oneOf": [
|
|
4820
|
+
{
|
|
4821
|
+
"type": "string"
|
|
4822
|
+
},
|
|
4823
|
+
{
|
|
4824
|
+
"type": "object",
|
|
4825
|
+
"additionalProperties": true
|
|
4826
|
+
}
|
|
4827
|
+
]
|
|
4806
4828
|
}
|
|
4807
4829
|
},
|
|
4808
4830
|
"recommendationStatus": {
|
|
4809
4831
|
"type": "object",
|
|
4810
|
-
"description": "Language-keyed recommendation status",
|
|
4832
|
+
"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.",
|
|
4811
4833
|
"additionalProperties": {
|
|
4812
|
-
"
|
|
4834
|
+
"oneOf": [
|
|
4835
|
+
{
|
|
4836
|
+
"type": "string"
|
|
4837
|
+
},
|
|
4838
|
+
{
|
|
4839
|
+
"type": "object",
|
|
4840
|
+
"additionalProperties": true
|
|
4841
|
+
}
|
|
4842
|
+
]
|
|
4813
4843
|
}
|
|
4814
4844
|
},
|
|
4815
4845
|
"overallAssessment": {
|
|
4816
4846
|
"type": "object",
|
|
4817
|
-
"description": "Language-keyed overall assessment",
|
|
4847
|
+
"description": "Language-keyed overall assessment. Pre-AI: empty string.\nPost-AI: long-form scalar string per locale.",
|
|
4818
4848
|
"additionalProperties": {
|
|
4819
|
-
"
|
|
4849
|
+
"oneOf": [
|
|
4850
|
+
{
|
|
4851
|
+
"type": "string"
|
|
4852
|
+
},
|
|
4853
|
+
{
|
|
4854
|
+
"type": "object",
|
|
4855
|
+
"additionalProperties": true
|
|
4856
|
+
}
|
|
4857
|
+
]
|
|
4820
4858
|
}
|
|
4821
4859
|
},
|
|
4822
4860
|
"nextSteps": {
|
|
4823
4861
|
"type": "object",
|
|
4824
|
-
"description": "Language-keyed next
|
|
4862
|
+
"description": "Language-keyed next-steps recommendations. Pre-AI: empty\nstring. Post-AI: array of strings per locale.",
|
|
4825
4863
|
"additionalProperties": {
|
|
4826
|
-
"
|
|
4864
|
+
"oneOf": [
|
|
4865
|
+
{
|
|
4866
|
+
"type": "string"
|
|
4867
|
+
},
|
|
4868
|
+
{
|
|
4869
|
+
"type": "array",
|
|
4870
|
+
"items": {
|
|
4871
|
+
"type": "string"
|
|
4872
|
+
}
|
|
4873
|
+
}
|
|
4874
|
+
]
|
|
4827
4875
|
}
|
|
4828
4876
|
},
|
|
4829
4877
|
"insightsAndAnalysis": {
|
|
4830
4878
|
"type": "object",
|
|
4831
|
-
"description": "Language-keyed insights and analysis",
|
|
4879
|
+
"description": "Language-keyed insights and analysis. Pre-AI: empty string.\nPost-AI: free-form object per locale.",
|
|
4832
4880
|
"additionalProperties": {
|
|
4833
|
-
"
|
|
4881
|
+
"oneOf": [
|
|
4882
|
+
{
|
|
4883
|
+
"type": "string"
|
|
4884
|
+
},
|
|
4885
|
+
{
|
|
4886
|
+
"type": "object",
|
|
4887
|
+
"additionalProperties": true
|
|
4888
|
+
}
|
|
4889
|
+
]
|
|
4834
4890
|
}
|
|
4835
4891
|
},
|
|
4836
4892
|
"keywords": {
|
|
4837
4893
|
"type": "object",
|
|
4838
|
-
"description": "Language-keyed extracted keywords",
|
|
4894
|
+
"description": "Language-keyed extracted keywords. Pre-AI: empty string.\nPost-AI: array of strings per locale.",
|
|
4839
4895
|
"additionalProperties": {
|
|
4840
|
-
"
|
|
4896
|
+
"oneOf": [
|
|
4897
|
+
{
|
|
4898
|
+
"type": "string"
|
|
4899
|
+
},
|
|
4900
|
+
{
|
|
4901
|
+
"type": "array",
|
|
4902
|
+
"items": {
|
|
4903
|
+
"type": "string"
|
|
4904
|
+
}
|
|
4905
|
+
}
|
|
4906
|
+
]
|
|
4841
4907
|
}
|
|
4842
4908
|
},
|
|
4843
4909
|
"availability": {
|
|
@@ -5271,12 +5337,26 @@
|
|
|
5271
5337
|
"description": "Numeric recommendation status code"
|
|
5272
5338
|
},
|
|
5273
5339
|
"overallMatchRating": {
|
|
5274
|
-
"
|
|
5275
|
-
|
|
5340
|
+
"oneOf": [
|
|
5341
|
+
{
|
|
5342
|
+
"type": "integer"
|
|
5343
|
+
},
|
|
5344
|
+
{
|
|
5345
|
+
"type": "string"
|
|
5346
|
+
}
|
|
5347
|
+
],
|
|
5348
|
+
"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."
|
|
5276
5349
|
},
|
|
5277
5350
|
"prevOverallMatchRating": {
|
|
5278
|
-
"
|
|
5279
|
-
|
|
5351
|
+
"oneOf": [
|
|
5352
|
+
{
|
|
5353
|
+
"type": "integer"
|
|
5354
|
+
},
|
|
5355
|
+
{
|
|
5356
|
+
"type": "string"
|
|
5357
|
+
}
|
|
5358
|
+
],
|
|
5359
|
+
"description": "Previous overall match rating before recalculation. Same\nint/string ambivalence as overallMatchRating - oneOf\naccepts both."
|
|
5280
5360
|
},
|
|
5281
5361
|
"ttl": {
|
|
5282
5362
|
"type": "string",
|
|
@@ -5345,44 +5425,96 @@
|
|
|
5345
5425
|
},
|
|
5346
5426
|
"rejectionTicket": {
|
|
5347
5427
|
"type": "object",
|
|
5348
|
-
"description": "Language-keyed rejection ticket
|
|
5428
|
+
"description": "Language-keyed rejection ticket. Pre-AI: empty string per\nlocale. Post-AI: object with isAssumed / description /\nstatus / category / etc keys.",
|
|
5349
5429
|
"additionalProperties": {
|
|
5350
|
-
"
|
|
5430
|
+
"oneOf": [
|
|
5431
|
+
{
|
|
5432
|
+
"type": "string"
|
|
5433
|
+
},
|
|
5434
|
+
{
|
|
5435
|
+
"type": "object",
|
|
5436
|
+
"additionalProperties": true
|
|
5437
|
+
}
|
|
5438
|
+
]
|
|
5351
5439
|
}
|
|
5352
5440
|
},
|
|
5353
5441
|
"recommendationStatus": {
|
|
5354
5442
|
"type": "object",
|
|
5355
|
-
"description": "Language-keyed recommendation status",
|
|
5443
|
+
"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.",
|
|
5356
5444
|
"additionalProperties": {
|
|
5357
|
-
"
|
|
5445
|
+
"oneOf": [
|
|
5446
|
+
{
|
|
5447
|
+
"type": "string"
|
|
5448
|
+
},
|
|
5449
|
+
{
|
|
5450
|
+
"type": "object",
|
|
5451
|
+
"additionalProperties": true
|
|
5452
|
+
}
|
|
5453
|
+
]
|
|
5358
5454
|
}
|
|
5359
5455
|
},
|
|
5360
5456
|
"overallAssessment": {
|
|
5361
5457
|
"type": "object",
|
|
5362
|
-
"description": "Language-keyed overall assessment",
|
|
5458
|
+
"description": "Language-keyed overall assessment. Pre-AI: empty string.\nPost-AI: long-form scalar string per locale.",
|
|
5363
5459
|
"additionalProperties": {
|
|
5364
|
-
"
|
|
5460
|
+
"oneOf": [
|
|
5461
|
+
{
|
|
5462
|
+
"type": "string"
|
|
5463
|
+
},
|
|
5464
|
+
{
|
|
5465
|
+
"type": "object",
|
|
5466
|
+
"additionalProperties": true
|
|
5467
|
+
}
|
|
5468
|
+
]
|
|
5365
5469
|
}
|
|
5366
5470
|
},
|
|
5367
5471
|
"nextSteps": {
|
|
5368
5472
|
"type": "object",
|
|
5369
|
-
"description": "Language-keyed next
|
|
5473
|
+
"description": "Language-keyed next-steps recommendations. Pre-AI: empty\nstring. Post-AI: array of strings per locale.",
|
|
5370
5474
|
"additionalProperties": {
|
|
5371
|
-
"
|
|
5475
|
+
"oneOf": [
|
|
5476
|
+
{
|
|
5477
|
+
"type": "string"
|
|
5478
|
+
},
|
|
5479
|
+
{
|
|
5480
|
+
"type": "array",
|
|
5481
|
+
"items": {
|
|
5482
|
+
"type": "string"
|
|
5483
|
+
}
|
|
5484
|
+
}
|
|
5485
|
+
]
|
|
5372
5486
|
}
|
|
5373
5487
|
},
|
|
5374
5488
|
"insightsAndAnalysis": {
|
|
5375
5489
|
"type": "object",
|
|
5376
|
-
"description": "Language-keyed insights and analysis",
|
|
5490
|
+
"description": "Language-keyed insights and analysis. Pre-AI: empty string.\nPost-AI: free-form object per locale.",
|
|
5377
5491
|
"additionalProperties": {
|
|
5378
|
-
"
|
|
5492
|
+
"oneOf": [
|
|
5493
|
+
{
|
|
5494
|
+
"type": "string"
|
|
5495
|
+
},
|
|
5496
|
+
{
|
|
5497
|
+
"type": "object",
|
|
5498
|
+
"additionalProperties": true
|
|
5499
|
+
}
|
|
5500
|
+
]
|
|
5379
5501
|
}
|
|
5380
5502
|
},
|
|
5381
5503
|
"keywords": {
|
|
5382
5504
|
"type": "object",
|
|
5383
|
-
"description": "Language-keyed extracted keywords",
|
|
5505
|
+
"description": "Language-keyed extracted keywords. Pre-AI: empty string.\nPost-AI: array of strings per locale.",
|
|
5384
5506
|
"additionalProperties": {
|
|
5385
|
-
"
|
|
5507
|
+
"oneOf": [
|
|
5508
|
+
{
|
|
5509
|
+
"type": "string"
|
|
5510
|
+
},
|
|
5511
|
+
{
|
|
5512
|
+
"type": "array",
|
|
5513
|
+
"items": {
|
|
5514
|
+
"type": "string"
|
|
5515
|
+
}
|
|
5516
|
+
}
|
|
5517
|
+
]
|
|
5386
5518
|
}
|
|
5387
5519
|
},
|
|
5388
5520
|
"availability": {
|