@smartytalent/mcp-tools 0.8.16 → 0.8.18

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 +62 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4613,6 +4613,14 @@
4613
4613
  "type": "string"
4614
4614
  }
4615
4615
  },
4616
+ "titleInclusive": {
4617
+ "title": "JobAttributesTitleInclusiveSchema",
4618
+ "description": "The job title as shown to candidates, marked as open to every gender. Language-keyed, same keys as `title`. Read-only: it is derived from `title` by the build pipeline, not supplied by a client. `title` stays the canonical, unmarked string and is what the ATS and the search index use; this is the one public surfaces display. The shape follows the locale: Polish and Czech restate the whole phrase in the feminine because the adjectives agree with the noun, while German, French and Italian append their market marker. Surfaces with a hard length limit use a short marker instead - on Polish that is \"(K/M/NB)\", which covers MORE than the restated pair, since the pair is binary by construction. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
4619
+ "type": "object",
4620
+ "additionalProperties": {
4621
+ "type": "string"
4622
+ }
4623
+ },
4616
4624
  "description": {
4617
4625
  "title": "JobAttributesDescriptionSchema",
4618
4626
  "description": "Detailed job description. Language-keyed object.",
@@ -5243,6 +5251,48 @@
5243
5251
  }
5244
5252
  }
5245
5253
  }
5254
+ },
5255
+ "users": {
5256
+ "title": "JobRelationshipsUsersSchema",
5257
+ "type": "object",
5258
+ "properties": {
5259
+ "data": {
5260
+ "type": "array",
5261
+ "items": {
5262
+ "title": "JobRelationshipsUsersDataSchema",
5263
+ "type": "object",
5264
+ "properties": {
5265
+ "type": {
5266
+ "type": "string"
5267
+ },
5268
+ "id": {
5269
+ "type": "string"
5270
+ }
5271
+ }
5272
+ }
5273
+ }
5274
+ }
5275
+ },
5276
+ "tasks": {
5277
+ "title": "JobRelationshipsTasksSchema",
5278
+ "type": "object",
5279
+ "properties": {
5280
+ "data": {
5281
+ "type": "array",
5282
+ "items": {
5283
+ "title": "JobRelationshipsTasksDataSchema",
5284
+ "type": "object",
5285
+ "properties": {
5286
+ "type": {
5287
+ "type": "string"
5288
+ },
5289
+ "id": {
5290
+ "type": "string"
5291
+ }
5292
+ }
5293
+ }
5294
+ }
5295
+ }
5246
5296
  }
5247
5297
  }
5248
5298
  },
@@ -5343,6 +5393,14 @@
5343
5393
  "type": "string"
5344
5394
  }
5345
5395
  },
5396
+ "titleInclusive": {
5397
+ "title": "JobAttributesTitleInclusiveSchema",
5398
+ "description": "The job title as shown to candidates, marked as open to every gender. Language-keyed, same keys as `title`. Read-only: it is derived from `title` by the build pipeline, not supplied by a client. `title` stays the canonical, unmarked string and is what the ATS and the search index use; this is the one public surfaces display. The shape follows the locale: Polish and Czech restate the whole phrase in the feminine because the adjectives agree with the noun, while German, French and Italian append their market marker. Surfaces with a hard length limit use a short marker instead - on Polish that is \"(K/M/NB)\", which covers MORE than the restated pair, since the pair is binary by construction. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
5399
+ "type": "object",
5400
+ "additionalProperties": {
5401
+ "type": "string"
5402
+ }
5403
+ },
5346
5404
  "description": {
5347
5405
  "title": "JobAttributesDescriptionSchema",
5348
5406
  "description": "Detailed job description. Language-keyed object.",
@@ -5887,6 +5945,10 @@
5887
5945
  "type": "string",
5888
5946
  "description": "Filter candidates by exact shortCode value."
5889
5947
  },
5948
+ "filterJobId": {
5949
+ "type": "string",
5950
+ "description": "Returns candidates applied to the given job (JobIndex lookup). The scalable way to list a job's pipeline."
5951
+ },
5890
5952
  "filterEmail": {
5891
5953
  "type": "string",
5892
5954
  "description": "Specifies the email address to filter the results."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.8.16",
3
+ "version": "0.8.18",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",