@smartytalent/openai-tools 0.9.22 → 0.9.23
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 +84 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -5359,6 +5359,22 @@
|
|
|
5359
5359
|
}
|
|
5360
5360
|
}
|
|
5361
5361
|
}
|
|
5362
|
+
},
|
|
5363
|
+
"recops": {
|
|
5364
|
+
"description": "The ONE human who runs the recruiting project (the delegation\nboard's addressee). `ownerId` is the Boe user on every\nworkflow-built job, so this is the human counterpart. `{data: null}`\nwhen unset. Present on list rows as well as on show. Written\nthrough PATCH; seeded by the jobs:activate order (its author) when\nthe job had none. Since 2026-09-03.",
|
|
5365
|
+
"allOf": [
|
|
5366
|
+
{
|
|
5367
|
+
"$ref": "#/components/schemas/JobRelationshipsRecopsSchema"
|
|
5368
|
+
}
|
|
5369
|
+
]
|
|
5370
|
+
},
|
|
5371
|
+
"hiringManagers": {
|
|
5372
|
+
"description": "The hiring side of the project (tenant users, usually with the\nhiringmanager role; a project can be co-hired). Present on list rows.\nWritten through PATCH (`{data: []}` clears); seeded at job:process\nfrom the intake sender (brief requestedByUserId) when that sender\nis a tenant user. The interview/decision mails resolve the hiring\nmanager from this relationship first. Since 2026-09-03.",
|
|
5373
|
+
"allOf": [
|
|
5374
|
+
{
|
|
5375
|
+
"$ref": "#/components/schemas/JobRelationshipsHiringManagersSchema"
|
|
5376
|
+
}
|
|
5377
|
+
]
|
|
5362
5378
|
}
|
|
5363
5379
|
}
|
|
5364
5380
|
},
|
|
@@ -5425,8 +5441,7 @@
|
|
|
5425
5441
|
"type": "object",
|
|
5426
5442
|
"required": [
|
|
5427
5443
|
"type",
|
|
5428
|
-
"id"
|
|
5429
|
-
"attributes"
|
|
5444
|
+
"id"
|
|
5430
5445
|
],
|
|
5431
5446
|
"properties": {
|
|
5432
5447
|
"type": {
|
|
@@ -5923,6 +5938,73 @@
|
|
|
5923
5938
|
}
|
|
5924
5939
|
}
|
|
5925
5940
|
}
|
|
5941
|
+
},
|
|
5942
|
+
"relationships": {
|
|
5943
|
+
"title": "JobRelationshipsPatchSchema",
|
|
5944
|
+
"description": "The relationships a PATCH /v1/jobs/{jobId} may carry (JSON:API: a PATCH\nmay carry relationships only). Each key REPLACES the stored link(s):\nrecops `{data: {type: users, id}}` or `{data: null}` to clear,\nhiringManagers / users `{data: [...]}` or `{data: []}` to clear. Every\nid must be a user of the tenant (400 otherwise). Other relationship keys\nare ignored - candidates, forms, ads and the rest are owned by their\nservices.",
|
|
5945
|
+
"type": "object",
|
|
5946
|
+
"properties": {
|
|
5947
|
+
"recops": {
|
|
5948
|
+
"title": "JobRelationshipsRecopsSchema",
|
|
5949
|
+
"type": "object",
|
|
5950
|
+
"properties": {
|
|
5951
|
+
"data": {
|
|
5952
|
+
"title": "JobRelationshipsRecopsDataSchema",
|
|
5953
|
+
"type": "object",
|
|
5954
|
+
"properties": {
|
|
5955
|
+
"type": {
|
|
5956
|
+
"type": "string"
|
|
5957
|
+
},
|
|
5958
|
+
"id": {
|
|
5959
|
+
"type": "string"
|
|
5960
|
+
}
|
|
5961
|
+
}
|
|
5962
|
+
}
|
|
5963
|
+
}
|
|
5964
|
+
},
|
|
5965
|
+
"hiringManagers": {
|
|
5966
|
+
"title": "JobRelationshipsHiringManagersSchema",
|
|
5967
|
+
"type": "object",
|
|
5968
|
+
"properties": {
|
|
5969
|
+
"data": {
|
|
5970
|
+
"type": "array",
|
|
5971
|
+
"items": {
|
|
5972
|
+
"title": "JobRelationshipsHiringManagersDataSchema",
|
|
5973
|
+
"type": "object",
|
|
5974
|
+
"properties": {
|
|
5975
|
+
"type": {
|
|
5976
|
+
"type": "string"
|
|
5977
|
+
},
|
|
5978
|
+
"id": {
|
|
5979
|
+
"type": "string"
|
|
5980
|
+
}
|
|
5981
|
+
}
|
|
5982
|
+
}
|
|
5983
|
+
}
|
|
5984
|
+
}
|
|
5985
|
+
},
|
|
5986
|
+
"users": {
|
|
5987
|
+
"title": "JobRelationshipsUsersPatchSchema",
|
|
5988
|
+
"type": "object",
|
|
5989
|
+
"properties": {
|
|
5990
|
+
"data": {
|
|
5991
|
+
"type": "array",
|
|
5992
|
+
"items": {
|
|
5993
|
+
"title": "JobRelationshipsUsersPatchDataSchema",
|
|
5994
|
+
"type": "object",
|
|
5995
|
+
"properties": {
|
|
5996
|
+
"type": {
|
|
5997
|
+
"type": "string"
|
|
5998
|
+
},
|
|
5999
|
+
"id": {
|
|
6000
|
+
"type": "string"
|
|
6001
|
+
}
|
|
6002
|
+
}
|
|
6003
|
+
}
|
|
6004
|
+
}
|
|
6005
|
+
}
|
|
6006
|
+
}
|
|
6007
|
+
}
|
|
5926
6008
|
}
|
|
5927
6009
|
}
|
|
5928
6010
|
}
|