@smartytalent/mcp-tools 0.7.9 → 0.7.11

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 +55 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2595,6 +2595,61 @@
2595
2595
  "operationId": "userIdentityOptions"
2596
2596
  }
2597
2597
  },
2598
+ {
2599
+ "name": "change_user_password",
2600
+ "description": "Change Own Password",
2601
+ "inputSchema": {
2602
+ "type": "object",
2603
+ "properties": {
2604
+ "data": {
2605
+ "type": "object",
2606
+ "properties": {
2607
+ "type": {
2608
+ "type": "string",
2609
+ "enum": [
2610
+ "user-passwords"
2611
+ ]
2612
+ },
2613
+ "attributes": {
2614
+ "type": "object",
2615
+ "required": [
2616
+ "currentPassword",
2617
+ "newPassword"
2618
+ ],
2619
+ "properties": {
2620
+ "currentPassword": {
2621
+ "type": "string",
2622
+ "format": "password"
2623
+ },
2624
+ "newPassword": {
2625
+ "type": "string",
2626
+ "format": "password"
2627
+ }
2628
+ }
2629
+ }
2630
+ }
2631
+ }
2632
+ }
2633
+ },
2634
+ "_meta": {
2635
+ "method": "POST",
2636
+ "path": "/v1/users/{userId}/password",
2637
+ "operationId": "changeUserPassword"
2638
+ }
2639
+ },
2640
+ {
2641
+ "name": "user_password_options",
2642
+ "description": "User Password Options",
2643
+ "inputSchema": {
2644
+ "type": "object",
2645
+ "properties": {}
2646
+ },
2647
+ "_meta": {
2648
+ "method": "OPTIONS",
2649
+ "path": "/v1/users/{userId}/password",
2650
+ "operationId": "userPasswordOptions"
2651
+ }
2652
+ },
2598
2653
  {
2599
2654
  "name": "create_user_invitation",
2600
2655
  "description": "Resend User Invitation",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.7.9",
3
+ "version": "0.7.11",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",