@smartytalent/openai-tools 0.1.12 → 0.1.13
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 +110 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -4499,7 +4499,14 @@
|
|
|
4499
4499
|
"description": "Preferred language code (e.g., en-US, pl-PL)"
|
|
4500
4500
|
},
|
|
4501
4501
|
"recommendationStatusCode": {
|
|
4502
|
-
"
|
|
4502
|
+
"oneOf": [
|
|
4503
|
+
{
|
|
4504
|
+
"type": "integer"
|
|
4505
|
+
},
|
|
4506
|
+
{
|
|
4507
|
+
"type": "string"
|
|
4508
|
+
}
|
|
4509
|
+
],
|
|
4503
4510
|
"description": "Numeric recommendation status code"
|
|
4504
4511
|
},
|
|
4505
4512
|
"overallMatchRating": {
|
|
@@ -5021,7 +5028,14 @@
|
|
|
5021
5028
|
"description": "Preferred language code (e.g., en-US, pl-PL)"
|
|
5022
5029
|
},
|
|
5023
5030
|
"recommendationStatusCode": {
|
|
5024
|
-
"
|
|
5031
|
+
"oneOf": [
|
|
5032
|
+
{
|
|
5033
|
+
"type": "integer"
|
|
5034
|
+
},
|
|
5035
|
+
{
|
|
5036
|
+
"type": "string"
|
|
5037
|
+
}
|
|
5038
|
+
],
|
|
5025
5039
|
"description": "Numeric recommendation status code"
|
|
5026
5040
|
},
|
|
5027
5041
|
"overallMatchRating": {
|
|
@@ -8410,6 +8424,21 @@
|
|
|
8410
8424
|
"status": {
|
|
8411
8425
|
"type": "string"
|
|
8412
8426
|
},
|
|
8427
|
+
"details": {
|
|
8428
|
+
"type": "object",
|
|
8429
|
+
"additionalProperties": {
|
|
8430
|
+
"type": "string"
|
|
8431
|
+
},
|
|
8432
|
+
"description": "Multilingual note details keyed by language code"
|
|
8433
|
+
},
|
|
8434
|
+
"source": {
|
|
8435
|
+
"type": "string",
|
|
8436
|
+
"description": "Source of the note"
|
|
8437
|
+
},
|
|
8438
|
+
"ttl": {
|
|
8439
|
+
"type": "string",
|
|
8440
|
+
"description": "Time-to-live expiration timestamp"
|
|
8441
|
+
},
|
|
8413
8442
|
"meta": {
|
|
8414
8443
|
"type": "object",
|
|
8415
8444
|
"additionalProperties": true
|
|
@@ -8579,6 +8608,21 @@
|
|
|
8579
8608
|
"status": {
|
|
8580
8609
|
"type": "string"
|
|
8581
8610
|
},
|
|
8611
|
+
"details": {
|
|
8612
|
+
"type": "object",
|
|
8613
|
+
"additionalProperties": {
|
|
8614
|
+
"type": "string"
|
|
8615
|
+
},
|
|
8616
|
+
"description": "Multilingual note details keyed by language code"
|
|
8617
|
+
},
|
|
8618
|
+
"source": {
|
|
8619
|
+
"type": "string",
|
|
8620
|
+
"description": "Source of the note"
|
|
8621
|
+
},
|
|
8622
|
+
"ttl": {
|
|
8623
|
+
"type": "string",
|
|
8624
|
+
"description": "Time-to-live expiration timestamp"
|
|
8625
|
+
},
|
|
8582
8626
|
"meta": {
|
|
8583
8627
|
"type": "object",
|
|
8584
8628
|
"additionalProperties": true
|
|
@@ -9261,9 +9305,41 @@
|
|
|
9261
9305
|
"name": {
|
|
9262
9306
|
"type": "string"
|
|
9263
9307
|
},
|
|
9308
|
+
"type": {
|
|
9309
|
+
"type": "string",
|
|
9310
|
+
"description": "Conversation type (e.g., candidates, jobs, talents, personas)"
|
|
9311
|
+
},
|
|
9264
9312
|
"status": {
|
|
9265
9313
|
"type": "string"
|
|
9266
9314
|
},
|
|
9315
|
+
"summary": {
|
|
9316
|
+
"type": "object",
|
|
9317
|
+
"additionalProperties": {
|
|
9318
|
+
"type": "string"
|
|
9319
|
+
},
|
|
9320
|
+
"description": "Multilingual summary keyed by language code"
|
|
9321
|
+
},
|
|
9322
|
+
"source": {
|
|
9323
|
+
"type": "string",
|
|
9324
|
+
"description": "Source of the conversation"
|
|
9325
|
+
},
|
|
9326
|
+
"languageCode": {
|
|
9327
|
+
"type": "string",
|
|
9328
|
+
"description": "Preferred language code (e.g., en-US, pl-PL)"
|
|
9329
|
+
},
|
|
9330
|
+
"isConversationEnd": {
|
|
9331
|
+
"type": "boolean",
|
|
9332
|
+
"description": "Whether the conversation has ended"
|
|
9333
|
+
},
|
|
9334
|
+
"settings": {
|
|
9335
|
+
"type": "object",
|
|
9336
|
+
"additionalProperties": true,
|
|
9337
|
+
"description": "Conversation settings inherited from job"
|
|
9338
|
+
},
|
|
9339
|
+
"ttl": {
|
|
9340
|
+
"type": "string",
|
|
9341
|
+
"description": "Time-to-live expiration timestamp"
|
|
9342
|
+
},
|
|
9267
9343
|
"meta": {
|
|
9268
9344
|
"type": "object",
|
|
9269
9345
|
"additionalProperties": true
|
|
@@ -9373,9 +9449,41 @@
|
|
|
9373
9449
|
"name": {
|
|
9374
9450
|
"type": "string"
|
|
9375
9451
|
},
|
|
9452
|
+
"type": {
|
|
9453
|
+
"type": "string",
|
|
9454
|
+
"description": "Conversation type (e.g., candidates, jobs, talents, personas)"
|
|
9455
|
+
},
|
|
9376
9456
|
"status": {
|
|
9377
9457
|
"type": "string"
|
|
9378
9458
|
},
|
|
9459
|
+
"summary": {
|
|
9460
|
+
"type": "object",
|
|
9461
|
+
"additionalProperties": {
|
|
9462
|
+
"type": "string"
|
|
9463
|
+
},
|
|
9464
|
+
"description": "Multilingual summary keyed by language code"
|
|
9465
|
+
},
|
|
9466
|
+
"source": {
|
|
9467
|
+
"type": "string",
|
|
9468
|
+
"description": "Source of the conversation"
|
|
9469
|
+
},
|
|
9470
|
+
"languageCode": {
|
|
9471
|
+
"type": "string",
|
|
9472
|
+
"description": "Preferred language code (e.g., en-US, pl-PL)"
|
|
9473
|
+
},
|
|
9474
|
+
"isConversationEnd": {
|
|
9475
|
+
"type": "boolean",
|
|
9476
|
+
"description": "Whether the conversation has ended"
|
|
9477
|
+
},
|
|
9478
|
+
"settings": {
|
|
9479
|
+
"type": "object",
|
|
9480
|
+
"additionalProperties": true,
|
|
9481
|
+
"description": "Conversation settings inherited from job"
|
|
9482
|
+
},
|
|
9483
|
+
"ttl": {
|
|
9484
|
+
"type": "string",
|
|
9485
|
+
"description": "Time-to-live expiration timestamp"
|
|
9486
|
+
},
|
|
9379
9487
|
"meta": {
|
|
9380
9488
|
"type": "object",
|
|
9381
9489
|
"additionalProperties": true
|