@smartytalent/mcp-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
|
@@ -5521,6 +5521,22 @@
|
|
|
5521
5521
|
}
|
|
5522
5522
|
}
|
|
5523
5523
|
}
|
|
5524
|
+
},
|
|
5525
|
+
"recops": {
|
|
5526
|
+
"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.",
|
|
5527
|
+
"allOf": [
|
|
5528
|
+
{
|
|
5529
|
+
"$ref": "#/components/schemas/JobRelationshipsRecopsSchema"
|
|
5530
|
+
}
|
|
5531
|
+
]
|
|
5532
|
+
},
|
|
5533
|
+
"hiringManagers": {
|
|
5534
|
+
"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.",
|
|
5535
|
+
"allOf": [
|
|
5536
|
+
{
|
|
5537
|
+
"$ref": "#/components/schemas/JobRelationshipsHiringManagersSchema"
|
|
5538
|
+
}
|
|
5539
|
+
]
|
|
5524
5540
|
}
|
|
5525
5541
|
}
|
|
5526
5542
|
},
|
|
@@ -5593,8 +5609,7 @@
|
|
|
5593
5609
|
"type": "object",
|
|
5594
5610
|
"required": [
|
|
5595
5611
|
"type",
|
|
5596
|
-
"id"
|
|
5597
|
-
"attributes"
|
|
5612
|
+
"id"
|
|
5598
5613
|
],
|
|
5599
5614
|
"properties": {
|
|
5600
5615
|
"type": {
|
|
@@ -6091,6 +6106,73 @@
|
|
|
6091
6106
|
}
|
|
6092
6107
|
}
|
|
6093
6108
|
}
|
|
6109
|
+
},
|
|
6110
|
+
"relationships": {
|
|
6111
|
+
"title": "JobRelationshipsPatchSchema",
|
|
6112
|
+
"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.",
|
|
6113
|
+
"type": "object",
|
|
6114
|
+
"properties": {
|
|
6115
|
+
"recops": {
|
|
6116
|
+
"title": "JobRelationshipsRecopsSchema",
|
|
6117
|
+
"type": "object",
|
|
6118
|
+
"properties": {
|
|
6119
|
+
"data": {
|
|
6120
|
+
"title": "JobRelationshipsRecopsDataSchema",
|
|
6121
|
+
"type": "object",
|
|
6122
|
+
"properties": {
|
|
6123
|
+
"type": {
|
|
6124
|
+
"type": "string"
|
|
6125
|
+
},
|
|
6126
|
+
"id": {
|
|
6127
|
+
"type": "string"
|
|
6128
|
+
}
|
|
6129
|
+
}
|
|
6130
|
+
}
|
|
6131
|
+
}
|
|
6132
|
+
},
|
|
6133
|
+
"hiringManagers": {
|
|
6134
|
+
"title": "JobRelationshipsHiringManagersSchema",
|
|
6135
|
+
"type": "object",
|
|
6136
|
+
"properties": {
|
|
6137
|
+
"data": {
|
|
6138
|
+
"type": "array",
|
|
6139
|
+
"items": {
|
|
6140
|
+
"title": "JobRelationshipsHiringManagersDataSchema",
|
|
6141
|
+
"type": "object",
|
|
6142
|
+
"properties": {
|
|
6143
|
+
"type": {
|
|
6144
|
+
"type": "string"
|
|
6145
|
+
},
|
|
6146
|
+
"id": {
|
|
6147
|
+
"type": "string"
|
|
6148
|
+
}
|
|
6149
|
+
}
|
|
6150
|
+
}
|
|
6151
|
+
}
|
|
6152
|
+
}
|
|
6153
|
+
},
|
|
6154
|
+
"users": {
|
|
6155
|
+
"title": "JobRelationshipsUsersPatchSchema",
|
|
6156
|
+
"type": "object",
|
|
6157
|
+
"properties": {
|
|
6158
|
+
"data": {
|
|
6159
|
+
"type": "array",
|
|
6160
|
+
"items": {
|
|
6161
|
+
"title": "JobRelationshipsUsersPatchDataSchema",
|
|
6162
|
+
"type": "object",
|
|
6163
|
+
"properties": {
|
|
6164
|
+
"type": {
|
|
6165
|
+
"type": "string"
|
|
6166
|
+
},
|
|
6167
|
+
"id": {
|
|
6168
|
+
"type": "string"
|
|
6169
|
+
}
|
|
6170
|
+
}
|
|
6171
|
+
}
|
|
6172
|
+
}
|
|
6173
|
+
}
|
|
6174
|
+
}
|
|
6175
|
+
}
|
|
6094
6176
|
}
|
|
6095
6177
|
}
|
|
6096
6178
|
}
|