azdo-cli 0.10.0 → 0.11.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 +5 -2
- package/dist/chunk-C7RAZJHV.js +1087 -0
- package/dist/index.js +658 -513
- package/dist/oauth-token-refresh-PHW66RC4.js +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Azure DevOps CLI focused on work item read/write workflows.
|
|
|
16
16
|
- Check branch pull request status, open PRs to `develop`, list PR comment threads for any PR (`--pr-number`), and resolve/reopen threads from the CLI (`pr`)
|
|
17
17
|
- Persist org/project/default fields in local config (`config`)
|
|
18
18
|
- List all fields of a work item (`list-fields`)
|
|
19
|
-
-
|
|
19
|
+
- Authenticate per Azure DevOps organization with `azdo auth login` — OAuth (Microsoft Entra) by default, or a Personal Access Token via `--use-pat` (or the `AZDO_PAT` env var). Credentials are stored in the OS credential store. Inspect with `azdo auth status`, remove with `azdo auth logout`. See [docs/authentication.md](docs/authentication.md).
|
|
20
20
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
@@ -27,6 +27,9 @@ npm install -g azdo-cli
|
|
|
27
27
|
## Quick Start
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
+
# Sign in to an organization (OAuth by default; add --use-pat for a PAT)
|
|
31
|
+
azdo auth login --org myorg
|
|
32
|
+
|
|
30
33
|
# Configure defaults once
|
|
31
34
|
azdo config set org myorg
|
|
32
35
|
azdo config set project myproject
|
|
@@ -56,7 +59,7 @@ azdo pr comment-reopen 17 --pr-number 64
|
|
|
56
59
|
|
|
57
60
|
| Topic | File |
|
|
58
61
|
|-------|------|
|
|
59
|
-
| Authentication & PAT
|
|
62
|
+
| Authentication (OAuth & PAT) | [docs/authentication.md](docs/authentication.md) |
|
|
60
63
|
| Linux credential store setup | [docs/linux-credential-store.md](docs/linux-credential-store.md) |
|
|
61
64
|
| Full command reference | [docs/commands.md](docs/commands.md) |
|
|
62
65
|
| Development setup | [docs/development.md](docs/development.md) |
|