@smartytalent/mcp-tools 0.1.33-dev.79 → 0.1.33-dev.80

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 +6 -70
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -10233,26 +10233,6 @@
10233
10233
  "title": "BriefRelationshipsSchema",
10234
10234
  "type": "object",
10235
10235
  "properties": {
10236
- "forms": {
10237
- "title": "BriefRelationshipsFormsSchema",
10238
- "type": "object",
10239
- "properties": {
10240
- "data": {
10241
- "type": "array",
10242
- "items": {
10243
- "type": "object",
10244
- "properties": {
10245
- "type": {
10246
- "type": "string"
10247
- },
10248
- "id": {
10249
- "type": "string"
10250
- }
10251
- }
10252
- }
10253
- }
10254
- }
10255
- },
10256
10236
  "jobs": {
10257
10237
  "title": "BriefRelationshipsJobsSchema",
10258
10238
  "type": "object",
@@ -10560,26 +10540,6 @@
10560
10540
  "title": "BriefRelationshipsSchema",
10561
10541
  "type": "object",
10562
10542
  "properties": {
10563
- "forms": {
10564
- "title": "BriefRelationshipsFormsSchema",
10565
- "type": "object",
10566
- "properties": {
10567
- "data": {
10568
- "type": "array",
10569
- "items": {
10570
- "type": "object",
10571
- "properties": {
10572
- "type": {
10573
- "type": "string"
10574
- },
10575
- "id": {
10576
- "type": "string"
10577
- }
10578
- }
10579
- }
10580
- }
10581
- }
10582
- },
10583
10543
  "jobs": {
10584
10544
  "title": "BriefRelationshipsJobsSchema",
10585
10545
  "type": "object",
@@ -20796,21 +20756,9 @@
20796
20756
  "description": "The type of search to perform"
20797
20757
  },
20798
20758
  "query": {
20799
- "description": "Search query parameters sent to OpenSearch. Shape varies by finder `type`. OpenAPI can't express the full type/query correlation as a strict discriminated union (the discriminator lives on the sibling `type` field, not on `query` itself), so this is encoded as `oneOf` over per-type query schemas. Clients should pick the shape matching the `type` they are posting.",
20800
- "oneOf": [
20801
- {
20802
- "$ref": "#/components/schemas/FinderQueryTalentsSchema"
20803
- },
20804
- {
20805
- "$ref": "#/components/schemas/FinderQueryCandidatesSchema"
20806
- },
20807
- {
20808
- "$ref": "#/components/schemas/FinderQueryJobsSchema"
20809
- },
20810
- {
20811
- "$ref": "#/components/schemas/FinderQueryEmailsSchema"
20812
- }
20813
- ]
20759
+ "description": "Search query parameters sent to OpenSearch. Shape varies by finder `type` - see FinderQuery{Talents,Candidates,Jobs,Emails}Schema below for the per-type fields. Encoded as a free-form object, NOT a `oneOf`: the per-type shapes all share optional fields (notably `search`), and the type discriminator lives on the sibling `type` field (not inside `query`), so a oneOf cannot disambiguate them and fails deserialization with \"Multiple matches\". Clients build the dict matching the `type`.",
20760
+ "type": "object",
20761
+ "additionalProperties": true
20814
20762
  },
20815
20763
  "results": {
20816
20764
  "title": "FinderResultsSchema",
@@ -21079,21 +21027,9 @@
21079
21027
  "description": "The type of search to perform"
21080
21028
  },
21081
21029
  "query": {
21082
- "description": "Search query parameters sent to OpenSearch. Shape varies by finder `type`. OpenAPI can't express the full type/query correlation as a strict discriminated union (the discriminator lives on the sibling `type` field, not on `query` itself), so this is encoded as `oneOf` over per-type query schemas. Clients should pick the shape matching the `type` they are posting.",
21083
- "oneOf": [
21084
- {
21085
- "$ref": "#/components/schemas/FinderQueryTalentsSchema"
21086
- },
21087
- {
21088
- "$ref": "#/components/schemas/FinderQueryCandidatesSchema"
21089
- },
21090
- {
21091
- "$ref": "#/components/schemas/FinderQueryJobsSchema"
21092
- },
21093
- {
21094
- "$ref": "#/components/schemas/FinderQueryEmailsSchema"
21095
- }
21096
- ]
21030
+ "description": "Search query parameters sent to OpenSearch. Shape varies by finder `type` - see FinderQuery{Talents,Candidates,Jobs,Emails}Schema below for the per-type fields. Encoded as a free-form object, NOT a `oneOf`: the per-type shapes all share optional fields (notably `search`), and the type discriminator lives on the sibling `type` field (not inside `query`), so a oneOf cannot disambiguate them and fails deserialization with \"Multiple matches\". Clients build the dict matching the `type`.",
21031
+ "type": "object",
21032
+ "additionalProperties": true
21097
21033
  },
21098
21034
  "results": {
21099
21035
  "title": "FinderResultsSchema",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.79",
3
+ "version": "0.1.33-dev.80",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",