@smartytalent/mcp-tools 0.9.21 → 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.
Files changed (2) hide show
  1. package/dist/tools.json +88 -2
  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
  }
@@ -17413,6 +17495,10 @@
17413
17495
  "type": "string",
17414
17496
  "description": "Recops board: \"this project's orders\" - the tasks whose\n`relationships.jobs` names this job (jobs:* orders and escalations\ncaptured on the project). Served by JobIdIndex, the link flattened\nat create and when it arrives on PATCH; older rows backfilled.\nCombine with `sort=-created`. Mutually exclusive with the other\nequality filters."
17415
17497
  },
17498
+ "filterTalentId": {
17499
+ "type": "string",
17500
+ "description": "Recops board: \"this person's orders\" - the tasks whose\n`relationships.talents` names this talent (talents:update /\ntalents:apply orders). Served by TalentIdIndex, the link flattened\nat create and when it arrives on PATCH; older rows backfilled\n(2026-09-03, wave 2). Combine with `sort=-created`. Mutually\nexclusive with the other equality filters."
17501
+ },
17416
17502
  "filterClaimedBy": {
17417
17503
  "type": "string",
17418
17504
  "description": "Recops board: \"mine in progress\" - the tasks whose `meta.claimedBy`\nis this user. The claim is written by the client (`meta.claimedBy`\n+ `meta.claimedAt` merged per key; `null` releases) and mirrored\ninto the index key on every PATCH that names it. Served by\nClaimedByIndex. Combine with `sort=-created`. Mutually exclusive\nwith the other equality filters."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.9.21",
3
+ "version": "0.9.23",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",