@smartytalent/openai-tools 0.1.24 → 0.1.26
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 +260 -41
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -4416,14 +4416,10 @@
|
|
|
4416
4416
|
"attributes": {
|
|
4417
4417
|
"title": "CandidateAttributesSchema",
|
|
4418
4418
|
"type": "object",
|
|
4419
|
-
"required": [
|
|
4420
|
-
"name",
|
|
4421
|
-
"email"
|
|
4422
|
-
],
|
|
4423
4419
|
"properties": {
|
|
4424
4420
|
"name": {
|
|
4425
4421
|
"type": "string",
|
|
4426
|
-
"description": "Full name of the candidate"
|
|
4422
|
+
"description": "Full name of the candidate. Required on create."
|
|
4427
4423
|
},
|
|
4428
4424
|
"email": {
|
|
4429
4425
|
"type": "string",
|
|
@@ -4450,20 +4446,30 @@
|
|
|
4450
4446
|
"description": "Current status of the candidate",
|
|
4451
4447
|
"enum": [
|
|
4452
4448
|
"active",
|
|
4449
|
+
"paused",
|
|
4453
4450
|
"withdrawn",
|
|
4454
4451
|
"rejected",
|
|
4452
|
+
"hired",
|
|
4453
|
+
"archived",
|
|
4455
4454
|
"inactive",
|
|
4456
4455
|
"onHold",
|
|
4457
4456
|
"offerExtended",
|
|
4458
4457
|
"offerDeclined",
|
|
4459
|
-
"futureConsideration"
|
|
4460
|
-
"archived"
|
|
4458
|
+
"futureConsideration"
|
|
4461
4459
|
]
|
|
4462
4460
|
},
|
|
4463
4461
|
"stage": {
|
|
4464
4462
|
"type": "string",
|
|
4465
4463
|
"description": "Current stage in the recruitment pipeline",
|
|
4466
4464
|
"enum": [
|
|
4465
|
+
"sourcing",
|
|
4466
|
+
"screening",
|
|
4467
|
+
"assessment",
|
|
4468
|
+
"interview",
|
|
4469
|
+
"offer",
|
|
4470
|
+
"hired",
|
|
4471
|
+
"onboarding",
|
|
4472
|
+
"evaluation",
|
|
4467
4473
|
"sourced",
|
|
4468
4474
|
"applied",
|
|
4469
4475
|
"initial",
|
|
@@ -4473,7 +4479,6 @@
|
|
|
4473
4479
|
"contacted",
|
|
4474
4480
|
"interviewed",
|
|
4475
4481
|
"offered",
|
|
4476
|
-
"hired",
|
|
4477
4482
|
"onboarded",
|
|
4478
4483
|
"evaluated"
|
|
4479
4484
|
]
|
|
@@ -4488,7 +4493,19 @@
|
|
|
4488
4493
|
},
|
|
4489
4494
|
"source": {
|
|
4490
4495
|
"type": "string",
|
|
4491
|
-
"description": "
|
|
4496
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
4497
|
+
},
|
|
4498
|
+
"channel": {
|
|
4499
|
+
"type": "string",
|
|
4500
|
+
"description": "How the candidate entered the system",
|
|
4501
|
+
"enum": [
|
|
4502
|
+
"form",
|
|
4503
|
+
"email",
|
|
4504
|
+
"call",
|
|
4505
|
+
"chat",
|
|
4506
|
+
"api",
|
|
4507
|
+
"agent"
|
|
4508
|
+
]
|
|
4492
4509
|
},
|
|
4493
4510
|
"shortCode": {
|
|
4494
4511
|
"type": "string",
|
|
@@ -4929,8 +4946,7 @@
|
|
|
4929
4946
|
"type": "object",
|
|
4930
4947
|
"required": [
|
|
4931
4948
|
"type",
|
|
4932
|
-
"id"
|
|
4933
|
-
"attributes"
|
|
4949
|
+
"id"
|
|
4934
4950
|
],
|
|
4935
4951
|
"properties": {
|
|
4936
4952
|
"type": {
|
|
@@ -4945,14 +4961,10 @@
|
|
|
4945
4961
|
"attributes": {
|
|
4946
4962
|
"title": "CandidateAttributesSchema",
|
|
4947
4963
|
"type": "object",
|
|
4948
|
-
"required": [
|
|
4949
|
-
"name",
|
|
4950
|
-
"email"
|
|
4951
|
-
],
|
|
4952
4964
|
"properties": {
|
|
4953
4965
|
"name": {
|
|
4954
4966
|
"type": "string",
|
|
4955
|
-
"description": "Full name of the candidate"
|
|
4967
|
+
"description": "Full name of the candidate. Required on create."
|
|
4956
4968
|
},
|
|
4957
4969
|
"email": {
|
|
4958
4970
|
"type": "string",
|
|
@@ -4979,20 +4991,30 @@
|
|
|
4979
4991
|
"description": "Current status of the candidate",
|
|
4980
4992
|
"enum": [
|
|
4981
4993
|
"active",
|
|
4994
|
+
"paused",
|
|
4982
4995
|
"withdrawn",
|
|
4983
4996
|
"rejected",
|
|
4997
|
+
"hired",
|
|
4998
|
+
"archived",
|
|
4984
4999
|
"inactive",
|
|
4985
5000
|
"onHold",
|
|
4986
5001
|
"offerExtended",
|
|
4987
5002
|
"offerDeclined",
|
|
4988
|
-
"futureConsideration"
|
|
4989
|
-
"archived"
|
|
5003
|
+
"futureConsideration"
|
|
4990
5004
|
]
|
|
4991
5005
|
},
|
|
4992
5006
|
"stage": {
|
|
4993
5007
|
"type": "string",
|
|
4994
5008
|
"description": "Current stage in the recruitment pipeline",
|
|
4995
5009
|
"enum": [
|
|
5010
|
+
"sourcing",
|
|
5011
|
+
"screening",
|
|
5012
|
+
"assessment",
|
|
5013
|
+
"interview",
|
|
5014
|
+
"offer",
|
|
5015
|
+
"hired",
|
|
5016
|
+
"onboarding",
|
|
5017
|
+
"evaluation",
|
|
4996
5018
|
"sourced",
|
|
4997
5019
|
"applied",
|
|
4998
5020
|
"initial",
|
|
@@ -5002,7 +5024,6 @@
|
|
|
5002
5024
|
"contacted",
|
|
5003
5025
|
"interviewed",
|
|
5004
5026
|
"offered",
|
|
5005
|
-
"hired",
|
|
5006
5027
|
"onboarded",
|
|
5007
5028
|
"evaluated"
|
|
5008
5029
|
]
|
|
@@ -5017,7 +5038,19 @@
|
|
|
5017
5038
|
},
|
|
5018
5039
|
"source": {
|
|
5019
5040
|
"type": "string",
|
|
5020
|
-
"description": "
|
|
5041
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
5042
|
+
},
|
|
5043
|
+
"channel": {
|
|
5044
|
+
"type": "string",
|
|
5045
|
+
"description": "How the candidate entered the system",
|
|
5046
|
+
"enum": [
|
|
5047
|
+
"form",
|
|
5048
|
+
"email",
|
|
5049
|
+
"call",
|
|
5050
|
+
"chat",
|
|
5051
|
+
"api",
|
|
5052
|
+
"agent"
|
|
5053
|
+
]
|
|
5021
5054
|
},
|
|
5022
5055
|
"shortCode": {
|
|
5023
5056
|
"type": "string",
|
|
@@ -5270,6 +5303,132 @@
|
|
|
5270
5303
|
"additionalProperties": true
|
|
5271
5304
|
}
|
|
5272
5305
|
}
|
|
5306
|
+
},
|
|
5307
|
+
"relationships": {
|
|
5308
|
+
"title": "CandidateRelationshipsSchema",
|
|
5309
|
+
"type": "object",
|
|
5310
|
+
"properties": {
|
|
5311
|
+
"job": {
|
|
5312
|
+
"title": "CandidateRelationshipsJobSchema",
|
|
5313
|
+
"type": "object",
|
|
5314
|
+
"properties": {
|
|
5315
|
+
"data": {
|
|
5316
|
+
"title": "CandidateRelationshipsJobDataSchema",
|
|
5317
|
+
"type": "object",
|
|
5318
|
+
"properties": {
|
|
5319
|
+
"type": {
|
|
5320
|
+
"type": "string"
|
|
5321
|
+
},
|
|
5322
|
+
"id": {
|
|
5323
|
+
"type": "string"
|
|
5324
|
+
}
|
|
5325
|
+
}
|
|
5326
|
+
}
|
|
5327
|
+
}
|
|
5328
|
+
},
|
|
5329
|
+
"talent": {
|
|
5330
|
+
"title": "CandidateRelationshipsTalentSchema",
|
|
5331
|
+
"type": "object",
|
|
5332
|
+
"properties": {
|
|
5333
|
+
"data": {
|
|
5334
|
+
"title": "CandidateRelationshipsTalentDataSchema",
|
|
5335
|
+
"type": "object",
|
|
5336
|
+
"properties": {
|
|
5337
|
+
"type": {
|
|
5338
|
+
"type": "string"
|
|
5339
|
+
},
|
|
5340
|
+
"id": {
|
|
5341
|
+
"type": "string"
|
|
5342
|
+
}
|
|
5343
|
+
}
|
|
5344
|
+
}
|
|
5345
|
+
}
|
|
5346
|
+
},
|
|
5347
|
+
"files": {
|
|
5348
|
+
"title": "CandidateRelationshipsFilesSchema",
|
|
5349
|
+
"type": "object",
|
|
5350
|
+
"properties": {
|
|
5351
|
+
"data": {
|
|
5352
|
+
"type": "array",
|
|
5353
|
+
"items": {
|
|
5354
|
+
"title": "CandidateRelationshipsFilesDataSchema",
|
|
5355
|
+
"type": "object",
|
|
5356
|
+
"properties": {
|
|
5357
|
+
"type": {
|
|
5358
|
+
"type": "string"
|
|
5359
|
+
},
|
|
5360
|
+
"id": {
|
|
5361
|
+
"type": "string"
|
|
5362
|
+
}
|
|
5363
|
+
}
|
|
5364
|
+
}
|
|
5365
|
+
}
|
|
5366
|
+
}
|
|
5367
|
+
},
|
|
5368
|
+
"forms": {
|
|
5369
|
+
"title": "CandidateRelationshipsFormsSchema",
|
|
5370
|
+
"type": "object",
|
|
5371
|
+
"properties": {
|
|
5372
|
+
"data": {
|
|
5373
|
+
"type": "array",
|
|
5374
|
+
"items": {
|
|
5375
|
+
"title": "CandidateRelationshipsFormsDataSchema",
|
|
5376
|
+
"type": "object",
|
|
5377
|
+
"properties": {
|
|
5378
|
+
"type": {
|
|
5379
|
+
"type": "string"
|
|
5380
|
+
},
|
|
5381
|
+
"id": {
|
|
5382
|
+
"type": "string"
|
|
5383
|
+
}
|
|
5384
|
+
}
|
|
5385
|
+
}
|
|
5386
|
+
}
|
|
5387
|
+
}
|
|
5388
|
+
},
|
|
5389
|
+
"translations": {
|
|
5390
|
+
"title": "CandidateRelationshipsTranslationsSchema",
|
|
5391
|
+
"type": "object",
|
|
5392
|
+
"properties": {
|
|
5393
|
+
"data": {
|
|
5394
|
+
"type": "array",
|
|
5395
|
+
"items": {
|
|
5396
|
+
"title": "CandidateRelationshipsTranslationsDataSchema",
|
|
5397
|
+
"type": "object",
|
|
5398
|
+
"properties": {
|
|
5399
|
+
"type": {
|
|
5400
|
+
"type": "string"
|
|
5401
|
+
},
|
|
5402
|
+
"id": {
|
|
5403
|
+
"type": "string"
|
|
5404
|
+
}
|
|
5405
|
+
}
|
|
5406
|
+
}
|
|
5407
|
+
}
|
|
5408
|
+
}
|
|
5409
|
+
},
|
|
5410
|
+
"operations": {
|
|
5411
|
+
"title": "CandidateRelationshipsOperationsSchema",
|
|
5412
|
+
"type": "object",
|
|
5413
|
+
"properties": {
|
|
5414
|
+
"data": {
|
|
5415
|
+
"type": "array",
|
|
5416
|
+
"items": {
|
|
5417
|
+
"title": "CandidateRelationshipsOperationsDataSchema",
|
|
5418
|
+
"type": "object",
|
|
5419
|
+
"properties": {
|
|
5420
|
+
"type": {
|
|
5421
|
+
"type": "string"
|
|
5422
|
+
},
|
|
5423
|
+
"id": {
|
|
5424
|
+
"type": "string"
|
|
5425
|
+
}
|
|
5426
|
+
}
|
|
5427
|
+
}
|
|
5428
|
+
}
|
|
5429
|
+
}
|
|
5430
|
+
}
|
|
5431
|
+
}
|
|
5273
5432
|
}
|
|
5274
5433
|
}
|
|
5275
5434
|
}
|
|
@@ -7421,28 +7580,33 @@
|
|
|
7421
7580
|
"attributes": {
|
|
7422
7581
|
"title": "SubmissionAttributesSchema",
|
|
7423
7582
|
"type": "object",
|
|
7424
|
-
"required": [
|
|
7425
|
-
"name",
|
|
7426
|
-
"email"
|
|
7427
|
-
],
|
|
7428
7583
|
"properties": {
|
|
7429
7584
|
"name": {
|
|
7430
|
-
"type": "string"
|
|
7585
|
+
"type": "string",
|
|
7586
|
+
"description": "Required on create"
|
|
7431
7587
|
},
|
|
7432
7588
|
"email": {
|
|
7433
|
-
"type": "string"
|
|
7589
|
+
"type": "string",
|
|
7590
|
+
"description": "Required on create"
|
|
7434
7591
|
},
|
|
7435
7592
|
"phone": {
|
|
7436
7593
|
"type": "string"
|
|
7437
7594
|
},
|
|
7438
|
-
"
|
|
7595
|
+
"channel": {
|
|
7439
7596
|
"type": "string",
|
|
7440
7597
|
"enum": [
|
|
7441
7598
|
"form",
|
|
7442
7599
|
"email",
|
|
7443
7600
|
"call",
|
|
7444
|
-
"
|
|
7445
|
-
|
|
7601
|
+
"chat",
|
|
7602
|
+
"api",
|
|
7603
|
+
"agent"
|
|
7604
|
+
],
|
|
7605
|
+
"description": "How the submission entered the system"
|
|
7606
|
+
},
|
|
7607
|
+
"source": {
|
|
7608
|
+
"type": "string",
|
|
7609
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
7446
7610
|
},
|
|
7447
7611
|
"type": {
|
|
7448
7612
|
"type": "string",
|
|
@@ -7777,6 +7941,10 @@
|
|
|
7777
7941
|
}
|
|
7778
7942
|
}
|
|
7779
7943
|
},
|
|
7944
|
+
"source": {
|
|
7945
|
+
"type": "string",
|
|
7946
|
+
"description": "Where the candidate found the job (e.g., careerPage, jobBoard, linkedin)"
|
|
7947
|
+
},
|
|
7780
7948
|
"consentCurrent": {
|
|
7781
7949
|
"type": "boolean"
|
|
7782
7950
|
},
|
|
@@ -7882,8 +8050,7 @@
|
|
|
7882
8050
|
"type": "object",
|
|
7883
8051
|
"required": [
|
|
7884
8052
|
"type",
|
|
7885
|
-
"id"
|
|
7886
|
-
"attributes"
|
|
8053
|
+
"id"
|
|
7887
8054
|
],
|
|
7888
8055
|
"properties": {
|
|
7889
8056
|
"type": {
|
|
@@ -7898,28 +8065,33 @@
|
|
|
7898
8065
|
"attributes": {
|
|
7899
8066
|
"title": "SubmissionAttributesSchema",
|
|
7900
8067
|
"type": "object",
|
|
7901
|
-
"required": [
|
|
7902
|
-
"name",
|
|
7903
|
-
"email"
|
|
7904
|
-
],
|
|
7905
8068
|
"properties": {
|
|
7906
8069
|
"name": {
|
|
7907
|
-
"type": "string"
|
|
8070
|
+
"type": "string",
|
|
8071
|
+
"description": "Required on create"
|
|
7908
8072
|
},
|
|
7909
8073
|
"email": {
|
|
7910
|
-
"type": "string"
|
|
8074
|
+
"type": "string",
|
|
8075
|
+
"description": "Required on create"
|
|
7911
8076
|
},
|
|
7912
8077
|
"phone": {
|
|
7913
8078
|
"type": "string"
|
|
7914
8079
|
},
|
|
7915
|
-
"
|
|
8080
|
+
"channel": {
|
|
7916
8081
|
"type": "string",
|
|
7917
8082
|
"enum": [
|
|
7918
8083
|
"form",
|
|
7919
8084
|
"email",
|
|
7920
8085
|
"call",
|
|
7921
|
-
"
|
|
7922
|
-
|
|
8086
|
+
"chat",
|
|
8087
|
+
"api",
|
|
8088
|
+
"agent"
|
|
8089
|
+
],
|
|
8090
|
+
"description": "How the submission entered the system"
|
|
8091
|
+
},
|
|
8092
|
+
"source": {
|
|
8093
|
+
"type": "string",
|
|
8094
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
7923
8095
|
},
|
|
7924
8096
|
"type": {
|
|
7925
8097
|
"type": "string",
|
|
@@ -12783,8 +12955,55 @@
|
|
|
12783
12955
|
"name": "update_run",
|
|
12784
12956
|
"description": "Update Run",
|
|
12785
12957
|
"parameters": {
|
|
12958
|
+
"title": "UpdateRunRequestBody",
|
|
12786
12959
|
"type": "object",
|
|
12787
|
-
"
|
|
12960
|
+
"required": [
|
|
12961
|
+
"data"
|
|
12962
|
+
],
|
|
12963
|
+
"properties": {
|
|
12964
|
+
"data": {
|
|
12965
|
+
"title": "UpdateRunRequestBodyData",
|
|
12966
|
+
"type": "object",
|
|
12967
|
+
"required": [
|
|
12968
|
+
"type",
|
|
12969
|
+
"id",
|
|
12970
|
+
"attributes"
|
|
12971
|
+
],
|
|
12972
|
+
"properties": {
|
|
12973
|
+
"type": {
|
|
12974
|
+
"type": "string",
|
|
12975
|
+
"enum": [
|
|
12976
|
+
"runs"
|
|
12977
|
+
]
|
|
12978
|
+
},
|
|
12979
|
+
"id": {
|
|
12980
|
+
"type": "string"
|
|
12981
|
+
},
|
|
12982
|
+
"attributes": {
|
|
12983
|
+
"title": "UpdateRunAttributesSchema",
|
|
12984
|
+
"type": "object",
|
|
12985
|
+
"required": [
|
|
12986
|
+
"status"
|
|
12987
|
+
],
|
|
12988
|
+
"properties": {
|
|
12989
|
+
"status": {
|
|
12990
|
+
"type": "string",
|
|
12991
|
+
"enum": [
|
|
12992
|
+
"running",
|
|
12993
|
+
"aborted"
|
|
12994
|
+
],
|
|
12995
|
+
"description": "Target status. 'running' redrives a failed/paused/completed run; 'aborted' cancels a pending/running run."
|
|
12996
|
+
},
|
|
12997
|
+
"fromStep": {
|
|
12998
|
+
"type": "integer",
|
|
12999
|
+
"minimum": 0,
|
|
13000
|
+
"description": "Only valid when status=running. Zero-based index of the step to redrive from. All step results from this index onwards are discarded. If omitted, resumes from the last failed/paused step (legacy behavior)."
|
|
13001
|
+
}
|
|
13002
|
+
}
|
|
13003
|
+
}
|
|
13004
|
+
}
|
|
13005
|
+
}
|
|
13006
|
+
}
|
|
12788
13007
|
}
|
|
12789
13008
|
}
|
|
12790
13009
|
},
|