@smartytalent/mcp-tools 0.8.17 → 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 +48 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4615,7 +4615,7 @@
4615
4615
  },
4616
4616
  "titleInclusive": {
4617
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. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
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
4619
  "type": "object",
4620
4620
  "additionalProperties": {
4621
4621
  "type": "string"
@@ -5251,6 +5251,48 @@
5251
5251
  }
5252
5252
  }
5253
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
+ }
5254
5296
  }
5255
5297
  }
5256
5298
  },
@@ -5353,7 +5395,7 @@
5353
5395
  },
5354
5396
  "titleInclusive": {
5355
5397
  "title": "JobAttributesTitleInclusiveSchema",
5356
- "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. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
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.",
5357
5399
  "type": "object",
5358
5400
  "additionalProperties": {
5359
5401
  "type": "string"
@@ -5903,6 +5945,10 @@
5903
5945
  "type": "string",
5904
5946
  "description": "Filter candidates by exact shortCode value."
5905
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
+ },
5906
5952
  "filterEmail": {
5907
5953
  "type": "string",
5908
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.17",
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",