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.
- package/dist/cli.js +26 -19
- 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
|
-
|
|
299
|
-
|
|
298
|
+
$ jira-ai settings --apply my-settings.yaml
|
|
299
|
+
$ jira-ai settings --reset
|
|
300
300
|
|
|
301
301
|
Settings File Structure:
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
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
|
/**
|