@smartytalent/openai-tools 0.5.0 → 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
@@ -1289,6 +1289,22 @@
1289
1289
  "type": "string",
1290
1290
  "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."
1291
1291
  },
1292
+ "sendInvitation": {
1293
+ "type": "boolean",
1294
+ "default": true,
1295
+ "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."
1296
+ },
1297
+ "password": {
1298
+ "type": "string",
1299
+ "format": "password",
1300
+ "minLength": 8,
1301
+ "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."
1302
+ },
1303
+ "passwordPermanent": {
1304
+ "type": "boolean",
1305
+ "default": false,
1306
+ "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)."
1307
+ },
1292
1308
  "status": {
1293
1309
  "type": "string"
1294
1310
  },
@@ -1587,6 +1603,22 @@
1587
1603
  "type": "string",
1588
1604
  "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."
1589
1605
  },
1606
+ "sendInvitation": {
1607
+ "type": "boolean",
1608
+ "default": true,
1609
+ "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."
1610
+ },
1611
+ "password": {
1612
+ "type": "string",
1613
+ "format": "password",
1614
+ "minLength": 8,
1615
+ "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."
1616
+ },
1617
+ "passwordPermanent": {
1618
+ "type": "boolean",
1619
+ "default": false,
1620
+ "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)."
1621
+ },
1590
1622
  "status": {
1591
1623
  "type": "string"
1592
1624
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",