@smartytalent/mcp-tools 0.4.12 → 0.5.1

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 +86 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -1721,6 +1721,72 @@
1721
1721
  }
1722
1722
  }
1723
1723
  }
1724
+ },
1725
+ "relationships": {
1726
+ "title": "UserRelationshipsSchema",
1727
+ "type": "object",
1728
+ "properties": {
1729
+ "role": {
1730
+ "title": "UserRelationshipsRoleSchema",
1731
+ "type": "object",
1732
+ "properties": {
1733
+ "data": {
1734
+ "title": "UserRelationshipsRoleDataSchema",
1735
+ "type": "object",
1736
+ "properties": {
1737
+ "type": {
1738
+ "type": "string"
1739
+ },
1740
+ "id": {
1741
+ "type": "string"
1742
+ }
1743
+ }
1744
+ }
1745
+ }
1746
+ },
1747
+ "jobs": {
1748
+ "title": "UserRelationshipsJobsSchema",
1749
+ "type": "object",
1750
+ "properties": {
1751
+ "data": {
1752
+ "type": "array",
1753
+ "items": {
1754
+ "title": "UserRelationshipsJobsDataSchema",
1755
+ "type": "object",
1756
+ "properties": {
1757
+ "type": {
1758
+ "type": "string"
1759
+ },
1760
+ "id": {
1761
+ "type": "string"
1762
+ }
1763
+ }
1764
+ }
1765
+ }
1766
+ }
1767
+ },
1768
+ "apikeys": {
1769
+ "title": "UserRelationshipsApikeysSchema",
1770
+ "type": "object",
1771
+ "properties": {
1772
+ "data": {
1773
+ "type": "array",
1774
+ "items": {
1775
+ "title": "UserRelationshipsApikeysDataSchema",
1776
+ "type": "object",
1777
+ "properties": {
1778
+ "type": {
1779
+ "type": "string"
1780
+ },
1781
+ "id": {
1782
+ "type": "string"
1783
+ }
1784
+ }
1785
+ }
1786
+ }
1787
+ }
1788
+ }
1789
+ }
1724
1790
  }
1725
1791
  }
1726
1792
  }
@@ -1737,7 +1803,16 @@
1737
1803
  "description": "Delete User",
1738
1804
  "inputSchema": {
1739
1805
  "type": "object",
1740
- "properties": {}
1806
+ "properties": {
1807
+ "permanentDelete": {
1808
+ "type": "string",
1809
+ "description": "Set to true for permanent deletion (row, Cognito account and connection secrets removed). Defaults to false (soft delete: row archived + Cognito account disabled).",
1810
+ "enum": [
1811
+ "true",
1812
+ "false"
1813
+ ]
1814
+ }
1815
+ }
1741
1816
  },
1742
1817
  "_meta": {
1743
1818
  "method": "DELETE",
@@ -2254,7 +2329,16 @@
2254
2329
  "description": "Delete Role",
2255
2330
  "inputSchema": {
2256
2331
  "type": "object",
2257
- "properties": {}
2332
+ "properties": {
2333
+ "permanentDelete": {
2334
+ "type": "string",
2335
+ "description": "Set to true for permanent deletion (row removed). Defaults to false (soft delete: role archived).",
2336
+ "enum": [
2337
+ "true",
2338
+ "false"
2339
+ ]
2340
+ }
2341
+ }
2258
2342
  },
2259
2343
  "_meta": {
2260
2344
  "method": "DELETE",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.4.12",
3
+ "version": "0.5.1",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",