@smartytalent/mcp-tools 0.7.8 → 0.7.9

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 -13
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2514,6 +2514,61 @@
2514
2514
  "operationId": "userIdentitiesOptions"
2515
2515
  }
2516
2516
  },
2517
+ {
2518
+ "name": "complete_user_identity_link",
2519
+ "description": "Complete Linking A Social Account",
2520
+ "inputSchema": {
2521
+ "type": "object",
2522
+ "properties": {
2523
+ "data": {
2524
+ "type": "object",
2525
+ "properties": {
2526
+ "type": {
2527
+ "type": "string",
2528
+ "enum": [
2529
+ "identity-links"
2530
+ ]
2531
+ },
2532
+ "attributes": {
2533
+ "type": "object",
2534
+ "required": [
2535
+ "code",
2536
+ "state"
2537
+ ],
2538
+ "properties": {
2539
+ "code": {
2540
+ "type": "string",
2541
+ "description": "The authorization code the provider put in the redirect."
2542
+ },
2543
+ "state": {
2544
+ "type": "string",
2545
+ "description": "Echoed back untouched from the redirect. It is the nonce."
2546
+ }
2547
+ }
2548
+ }
2549
+ }
2550
+ }
2551
+ }
2552
+ },
2553
+ "_meta": {
2554
+ "method": "POST",
2555
+ "path": "/v1/users/{userId}/identities/complete",
2556
+ "operationId": "completeUserIdentityLink"
2557
+ }
2558
+ },
2559
+ {
2560
+ "name": "user_identity_complete_options",
2561
+ "description": "User Identity Complete Options",
2562
+ "inputSchema": {
2563
+ "type": "object",
2564
+ "properties": {}
2565
+ },
2566
+ "_meta": {
2567
+ "method": "OPTIONS",
2568
+ "path": "/v1/users/{userId}/identities/complete",
2569
+ "operationId": "userIdentityCompleteOptions"
2570
+ }
2571
+ },
2517
2572
  {
2518
2573
  "name": "delete_user_identity",
2519
2574
  "description": "Unlink A Social Account",
@@ -2540,19 +2595,6 @@
2540
2595
  "operationId": "userIdentityOptions"
2541
2596
  }
2542
2597
  },
2543
- {
2544
- "name": "identity_link_callback",
2545
- "description": "Social Account Link Callback",
2546
- "inputSchema": {
2547
- "type": "object",
2548
- "properties": {}
2549
- },
2550
- "_meta": {
2551
- "method": "GET",
2552
- "path": "/v1/auth/identities/callback",
2553
- "operationId": "identityLinkCallback"
2554
- }
2555
- },
2556
2598
  {
2557
2599
  "name": "create_user_invitation",
2558
2600
  "description": "Resend User Invitation",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",