@smartytalent/openai-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.
- package/dist/tools.json +76 -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,52 @@
|
|
|
4800
4814
|
},
|
|
4801
4815
|
"rejectionTicket": {
|
|
4802
4816
|
"type": "object",
|
|
4803
|
-
"description": "Language-keyed rejection ticket
|
|
4817
|
+
"description": "Language-keyed rejection ticket. AI populates this as an\nobject with isAssumed/description/etc keys, not a plain\nstring - additionalProperties accepts arbitrary shape.",
|
|
4804
4818
|
"additionalProperties": {
|
|
4805
|
-
"type": "
|
|
4819
|
+
"type": "object",
|
|
4820
|
+
"additionalProperties": true
|
|
4806
4821
|
}
|
|
4807
4822
|
},
|
|
4808
4823
|
"recommendationStatus": {
|
|
4809
4824
|
"type": "object",
|
|
4810
|
-
"description": "Language-keyed recommendation status",
|
|
4825
|
+
"description": "Language-keyed recommendation status (scalar string per locale)",
|
|
4811
4826
|
"additionalProperties": {
|
|
4812
|
-
"type": "
|
|
4827
|
+
"type": "string"
|
|
4813
4828
|
}
|
|
4814
4829
|
},
|
|
4815
4830
|
"overallAssessment": {
|
|
4816
4831
|
"type": "object",
|
|
4817
|
-
"description": "Language-keyed overall assessment",
|
|
4832
|
+
"description": "Language-keyed overall assessment (scalar string per locale)",
|
|
4818
4833
|
"additionalProperties": {
|
|
4819
|
-
"type": "
|
|
4834
|
+
"type": "string"
|
|
4820
4835
|
}
|
|
4821
4836
|
},
|
|
4822
4837
|
"nextSteps": {
|
|
4823
4838
|
"type": "object",
|
|
4824
|
-
"description": "Language-keyed next
|
|
4839
|
+
"description": "Language-keyed next-steps recommendations (array of strings per locale)",
|
|
4825
4840
|
"additionalProperties": {
|
|
4826
|
-
"type": "
|
|
4841
|
+
"type": "array",
|
|
4842
|
+
"items": {
|
|
4843
|
+
"type": "string"
|
|
4844
|
+
}
|
|
4827
4845
|
}
|
|
4828
4846
|
},
|
|
4829
4847
|
"insightsAndAnalysis": {
|
|
4830
4848
|
"type": "object",
|
|
4831
|
-
"description": "Language-keyed insights and analysis",
|
|
4849
|
+
"description": "Language-keyed insights and analysis (free-form object per locale)",
|
|
4832
4850
|
"additionalProperties": {
|
|
4833
|
-
"type": "object"
|
|
4851
|
+
"type": "object",
|
|
4852
|
+
"additionalProperties": true
|
|
4834
4853
|
}
|
|
4835
4854
|
},
|
|
4836
4855
|
"keywords": {
|
|
4837
4856
|
"type": "object",
|
|
4838
|
-
"description": "Language-keyed extracted keywords",
|
|
4857
|
+
"description": "Language-keyed extracted keywords (array of strings per locale)",
|
|
4839
4858
|
"additionalProperties": {
|
|
4840
|
-
"type": "
|
|
4859
|
+
"type": "array",
|
|
4860
|
+
"items": {
|
|
4861
|
+
"type": "string"
|
|
4862
|
+
}
|
|
4841
4863
|
}
|
|
4842
4864
|
},
|
|
4843
4865
|
"availability": {
|
|
@@ -5271,12 +5293,26 @@
|
|
|
5271
5293
|
"description": "Numeric recommendation status code"
|
|
5272
5294
|
},
|
|
5273
5295
|
"overallMatchRating": {
|
|
5274
|
-
"
|
|
5275
|
-
|
|
5296
|
+
"oneOf": [
|
|
5297
|
+
{
|
|
5298
|
+
"type": "integer"
|
|
5299
|
+
},
|
|
5300
|
+
{
|
|
5301
|
+
"type": "string"
|
|
5302
|
+
}
|
|
5303
|
+
],
|
|
5304
|
+
"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
5305
|
},
|
|
5277
5306
|
"prevOverallMatchRating": {
|
|
5278
|
-
"
|
|
5279
|
-
|
|
5307
|
+
"oneOf": [
|
|
5308
|
+
{
|
|
5309
|
+
"type": "integer"
|
|
5310
|
+
},
|
|
5311
|
+
{
|
|
5312
|
+
"type": "string"
|
|
5313
|
+
}
|
|
5314
|
+
],
|
|
5315
|
+
"description": "Previous overall match rating before recalculation. Same\nint/string ambivalence as overallMatchRating - oneOf\naccepts both."
|
|
5280
5316
|
},
|
|
5281
5317
|
"ttl": {
|
|
5282
5318
|
"type": "string",
|
|
@@ -5345,44 +5381,52 @@
|
|
|
5345
5381
|
},
|
|
5346
5382
|
"rejectionTicket": {
|
|
5347
5383
|
"type": "object",
|
|
5348
|
-
"description": "Language-keyed rejection ticket
|
|
5384
|
+
"description": "Language-keyed rejection ticket. AI populates this as an\nobject with isAssumed/description/etc keys, not a plain\nstring - additionalProperties accepts arbitrary shape.",
|
|
5349
5385
|
"additionalProperties": {
|
|
5350
|
-
"type": "
|
|
5386
|
+
"type": "object",
|
|
5387
|
+
"additionalProperties": true
|
|
5351
5388
|
}
|
|
5352
5389
|
},
|
|
5353
5390
|
"recommendationStatus": {
|
|
5354
5391
|
"type": "object",
|
|
5355
|
-
"description": "Language-keyed recommendation status",
|
|
5392
|
+
"description": "Language-keyed recommendation status (scalar string per locale)",
|
|
5356
5393
|
"additionalProperties": {
|
|
5357
|
-
"type": "
|
|
5394
|
+
"type": "string"
|
|
5358
5395
|
}
|
|
5359
5396
|
},
|
|
5360
5397
|
"overallAssessment": {
|
|
5361
5398
|
"type": "object",
|
|
5362
|
-
"description": "Language-keyed overall assessment",
|
|
5399
|
+
"description": "Language-keyed overall assessment (scalar string per locale)",
|
|
5363
5400
|
"additionalProperties": {
|
|
5364
|
-
"type": "
|
|
5401
|
+
"type": "string"
|
|
5365
5402
|
}
|
|
5366
5403
|
},
|
|
5367
5404
|
"nextSteps": {
|
|
5368
5405
|
"type": "object",
|
|
5369
|
-
"description": "Language-keyed next
|
|
5406
|
+
"description": "Language-keyed next-steps recommendations (array of strings per locale)",
|
|
5370
5407
|
"additionalProperties": {
|
|
5371
|
-
"type": "
|
|
5408
|
+
"type": "array",
|
|
5409
|
+
"items": {
|
|
5410
|
+
"type": "string"
|
|
5411
|
+
}
|
|
5372
5412
|
}
|
|
5373
5413
|
},
|
|
5374
5414
|
"insightsAndAnalysis": {
|
|
5375
5415
|
"type": "object",
|
|
5376
|
-
"description": "Language-keyed insights and analysis",
|
|
5416
|
+
"description": "Language-keyed insights and analysis (free-form object per locale)",
|
|
5377
5417
|
"additionalProperties": {
|
|
5378
|
-
"type": "object"
|
|
5418
|
+
"type": "object",
|
|
5419
|
+
"additionalProperties": true
|
|
5379
5420
|
}
|
|
5380
5421
|
},
|
|
5381
5422
|
"keywords": {
|
|
5382
5423
|
"type": "object",
|
|
5383
|
-
"description": "Language-keyed extracted keywords",
|
|
5424
|
+
"description": "Language-keyed extracted keywords (array of strings per locale)",
|
|
5384
5425
|
"additionalProperties": {
|
|
5385
|
-
"type": "
|
|
5426
|
+
"type": "array",
|
|
5427
|
+
"items": {
|
|
5428
|
+
"type": "string"
|
|
5429
|
+
}
|
|
5386
5430
|
}
|
|
5387
5431
|
},
|
|
5388
5432
|
"availability": {
|