atlass 1.7.0 → 1.9.0
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/README.md +17 -0
- package/dist/bitbucket.d.mts +1 -0
- package/dist/bitbucket.mjs +6 -0
- package/dist/build-DhED0Zw_.mjs +2419 -0
- package/dist/cli.mjs +2 -2290
- package/dist/confluence.d.mts +1 -0
- package/dist/confluence.mjs +6 -0
- package/dist/jira.d.mts +1 -0
- package/dist/jira.mjs +6 -0
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -12,6 +12,10 @@ npm install -g atlass
|
|
|
12
12
|
|
|
13
13
|
Or from source: `pnpm install && pnpm build && pnpm link --global`.
|
|
14
14
|
|
|
15
|
+
The install also adds `jira`, `confluence`, and `bitbucket` as shortcuts for
|
|
16
|
+
`atlass jira`, `atlass confluence`, and `atlass bitbucket`. Under `atlass`,
|
|
17
|
+
`conf` and `bb` are aliases for the two long names.
|
|
18
|
+
|
|
15
19
|
## Authentication
|
|
16
20
|
|
|
17
21
|
Create an API token at
|
|
@@ -86,6 +90,19 @@ body sent is everything between the H1 and `## Comments`.
|
|
|
86
90
|
- Confluence uploads local images referenced in the body as attachments. Jira
|
|
87
91
|
update does not support image changes yet.
|
|
88
92
|
|
|
93
|
+
## List
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
atlass jira list
|
|
97
|
+
atlass jira list --project PROJ
|
|
98
|
+
atlass jira list --all
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Lists issues assigned to you as `KEY Status Age Summary`, with In Progress
|
|
102
|
+
first, then To Do, and the most recently updated at the top of each group. Done
|
|
103
|
+
issues are left out; `--all` adds those updated in the last 30 days. `--json`
|
|
104
|
+
and `--copy` work as for search.
|
|
105
|
+
|
|
89
106
|
## Search
|
|
90
107
|
|
|
91
108
|
```bash
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|