@smartytalent/mcp-tools 0.1.15 → 0.1.17

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 +29 -20
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -9691,7 +9691,18 @@
9691
9691
  "type": "object",
9692
9692
  "properties": {
9693
9693
  "name": {
9694
- "type": "string"
9694
+ "oneOf": [
9695
+ {
9696
+ "type": "string"
9697
+ },
9698
+ {
9699
+ "type": "object",
9700
+ "additionalProperties": {
9701
+ "type": "string"
9702
+ }
9703
+ }
9704
+ ],
9705
+ "description": "Conversation name. Can be a plain string or a multilingual object keyed by language code"
9695
9706
  },
9696
9707
  "type": {
9697
9708
  "type": "string",
@@ -9841,7 +9852,18 @@
9841
9852
  "type": "object",
9842
9853
  "properties": {
9843
9854
  "name": {
9844
- "type": "string"
9855
+ "oneOf": [
9856
+ {
9857
+ "type": "string"
9858
+ },
9859
+ {
9860
+ "type": "object",
9861
+ "additionalProperties": {
9862
+ "type": "string"
9863
+ }
9864
+ }
9865
+ ],
9866
+ "description": "Conversation name. Can be a plain string or a multilingual object keyed by language code"
9845
9867
  },
9846
9868
  "type": {
9847
9869
  "type": "string",
@@ -11620,29 +11642,16 @@
11620
11642
  }
11621
11643
  },
11622
11644
  {
11623
- "name": "cancel_run",
11624
- "description": "Cancel Run",
11645
+ "name": "update_run",
11646
+ "description": "Update Run",
11625
11647
  "inputSchema": {
11626
11648
  "type": "object",
11627
11649
  "properties": {}
11628
11650
  },
11629
11651
  "_meta": {
11630
- "method": "POST",
11631
- "path": "/v1/runs/{runId}/cancel",
11632
- "operationId": "cancelRun"
11633
- }
11634
- },
11635
- {
11636
- "name": "retry_run",
11637
- "description": "Retry Run",
11638
- "inputSchema": {
11639
- "type": "object",
11640
- "properties": {}
11641
- },
11642
- "_meta": {
11643
- "method": "POST",
11644
- "path": "/v1/runs/{runId}/retry",
11645
- "operationId": "retryRun"
11652
+ "method": "PATCH",
11653
+ "path": "/v1/runs/{runId}",
11654
+ "operationId": "updateRun"
11646
11655
  }
11647
11656
  },
11648
11657
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",