jira-ai 1.8.0 → 1.8.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.
@@ -544,7 +544,7 @@ export async function searchUsers(query) {
544
544
  maxResults: 10,
545
545
  });
546
546
  return users
547
- .filter((user) => user.active && user.accountType === 'atlassian')
547
+ .filter((user) => user.active && user.accountType === 'atlassian' && user.accountId && user.accountId !== '***')
548
548
  .map((user) => ({
549
549
  accountId: user.accountId || '',
550
550
  displayName: user.displayName || '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jira-ai",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "AI friendly Jira CLI to save context",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",