@smartytalent/mcp-tools 0.5.1 → 0.5.2

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 +32 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -1325,6 +1325,22 @@
1325
1325
  "type": "string",
1326
1326
  "description": "CDN URL of the profile picture. Either a per-user upload (users/... key, minted via the upload door) or a shared gallery image (avatars/...). Must point at an existing CDN object - updateUser head-checks it."
1327
1327
  },
1328
+ "sendInvitation": {
1329
+ "type": "boolean",
1330
+ "default": true,
1331
+ "description": "CREATE-ONLY. Default true: Cognito emails the temporary password. Set false to suppress the invitation - then `password` is required. Requires role sysowner/owner/admin. Rejected on update."
1332
+ },
1333
+ "password": {
1334
+ "type": "string",
1335
+ "format": "password",
1336
+ "minLength": 8,
1337
+ "description": "CREATE-ONLY, never returned. Admin-set password for the new account; requires `sendInvitation: false` and role sysowner/owner/admin. Must satisfy the pool password policy (min 8, upper+lower+digit+symbol). Rejected on update."
1338
+ },
1339
+ "passwordPermanent": {
1340
+ "type": "boolean",
1341
+ "default": false,
1342
+ "description": "CREATE-ONLY. False (default): the account lands in FORCE_CHANGE_PASSWORD and the user must change the password at first sign-in. True: the password is permanent and the account is active immediately (audited)."
1343
+ },
1328
1344
  "status": {
1329
1345
  "type": "string"
1330
1346
  },
@@ -1629,6 +1645,22 @@
1629
1645
  "type": "string",
1630
1646
  "description": "CDN URL of the profile picture. Either a per-user upload (users/... key, minted via the upload door) or a shared gallery image (avatars/...). Must point at an existing CDN object - updateUser head-checks it."
1631
1647
  },
1648
+ "sendInvitation": {
1649
+ "type": "boolean",
1650
+ "default": true,
1651
+ "description": "CREATE-ONLY. Default true: Cognito emails the temporary password. Set false to suppress the invitation - then `password` is required. Requires role sysowner/owner/admin. Rejected on update."
1652
+ },
1653
+ "password": {
1654
+ "type": "string",
1655
+ "format": "password",
1656
+ "minLength": 8,
1657
+ "description": "CREATE-ONLY, never returned. Admin-set password for the new account; requires `sendInvitation: false` and role sysowner/owner/admin. Must satisfy the pool password policy (min 8, upper+lower+digit+symbol). Rejected on update."
1658
+ },
1659
+ "passwordPermanent": {
1660
+ "type": "boolean",
1661
+ "default": false,
1662
+ "description": "CREATE-ONLY. False (default): the account lands in FORCE_CHANGE_PASSWORD and the user must change the password at first sign-in. True: the password is permanent and the account is active immediately (audited)."
1663
+ },
1632
1664
  "status": {
1633
1665
  "type": "string"
1634
1666
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",