jira-ai 0.6.8 → 0.6.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/cli.js +26 -19
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -295,27 +295,34 @@ program
295
295
  Examples:
296
296
  $ jira-ai settings
297
297
  $ jira-ai settings --validate my-settings.yaml
298
- $ jira-ai settings --apply my-settings.yaml
299
- $ jira-ai settings --reset
298
+ $ jira-ai settings --apply my-settings.yaml
299
+ $ jira-ai settings --reset
300
300
 
301
301
  Settings File Structure:
302
- projects:
303
- - all # Allow all projects
304
- - PROJ # Allow specific project by key
305
- - key: PM # Project-specific configuration
306
- commands: # Limit commands for this project
307
- - task-with-details
308
- filters:
309
- participated: # Filter by user participation
310
- was_assignee: true
311
- was_reporter: true
312
- was_commenter: true
313
- is_watcher: true
314
- jql: "issuetype = Bug" # Custom JQL filter
315
- commands:
316
- - all # Allow all commands globally
317
- - me
318
- - projects
302
+ defaults:
303
+ allowed-jira-projects:
304
+ - all # Allow all projects
305
+ allowed-commands:
306
+ - all # Allow all commands globally
307
+ allowed-confluence-spaces:
308
+ - all # Allow all Confluence spaces
309
+
310
+ organizations:
311
+ work:
312
+ allowed-jira-projects:
313
+ - PROJ # Allow specific project by key
314
+ - key: PM # Project-specific configuration
315
+ commands: # Limit commands for this project
316
+ - task-with-details
317
+ filters:
318
+ participated: # Filter by user participation
319
+ was_assignee: true
320
+ was_reporter: true
321
+ allowed-commands:
322
+ - me
323
+ - projects
324
+ allowed-confluence-spaces:
325
+ - SPACE1 # Allow specific Confluence space
319
326
  `)
320
327
  .action((options) => settingsCommand(options));
321
328
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jira-ai",
3
- "version": "0.6.8",
3
+ "version": "0.6.9",
4
4
  "description": "AI friendly Jira CLI to save context",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",