@proggarapsody/bitbottle 1.61.0 → 1.63.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 +23 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,11 +47,6 @@ bitbottle skill remove # uninstall
|
|
|
47
47
|
go install github.com/proggarapsody/bitbottle/cmd/bitbottle@latest
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
**Nix:**
|
|
51
|
-
```sh
|
|
52
|
-
nix run github:proggarapsody/bitbottle -- --version
|
|
53
|
-
```
|
|
54
|
-
|
|
55
50
|
**Homebrew / binary / deb / rpm / Docker** — see the [latest release](https://github.com/proggarapsody/bitbottle/releases/latest).
|
|
56
51
|
|
|
57
52
|
---
|
|
@@ -96,7 +91,8 @@ Tokens are intentionally stripped from `hosts.yml` on every save. If you have an
|
|
|
96
91
|
| `pipeline` | `list` `view` `run` _(Cloud only)_ |
|
|
97
92
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
98
93
|
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
99
|
-
| `
|
|
94
|
+
| `user` | `view` |
|
|
95
|
+
| `workspace` | `list` `member list` _(Cloud only)_ |
|
|
100
96
|
| `project` | `list WORKSPACE` _(Cloud only)_ |
|
|
101
97
|
| `issue` | `list` `view` `create` `close` `edit` `reopen` `assign` `comment {list\|add\|edit\|delete}` _(Cloud only)_ |
|
|
102
98
|
| `search` | `code QUERY` _(Cloud only)_ |
|
|
@@ -434,11 +430,31 @@ bitbottle workspace list --json slug,name --jq '.[].slug'
|
|
|
434
430
|
# Projects within a workspace
|
|
435
431
|
bitbottle project list myworkspace
|
|
436
432
|
bitbottle project list myworkspace --limit 100
|
|
433
|
+
|
|
434
|
+
# Members of a workspace
|
|
435
|
+
bitbottle workspace member list myworkspace
|
|
436
|
+
bitbottle workspace member list # inferred from pinned repo
|
|
437
|
+
bitbottle workspace member list myworkspace --json
|
|
437
438
|
```
|
|
438
439
|
|
|
439
|
-
|
|
440
|
+
All commands surface a typed unsupported-capability error against
|
|
440
441
|
Bitbucket Server / Data Center hosts (workspaces are a Cloud concept).
|
|
441
442
|
|
|
443
|
+
### User Profile
|
|
444
|
+
|
|
445
|
+
```bash
|
|
446
|
+
# Display the currently authenticated user's profile
|
|
447
|
+
bitbottle user view
|
|
448
|
+
|
|
449
|
+
# JSON output
|
|
450
|
+
bitbottle user view --json
|
|
451
|
+
|
|
452
|
+
# Filter with jq
|
|
453
|
+
bitbottle user view --json slug,name --jq '.slug'
|
|
454
|
+
```
|
|
455
|
+
|
|
456
|
+
Works on both Bitbucket Cloud and Bitbucket Server / Data Center.
|
|
457
|
+
|
|
442
458
|
### Search _(Cloud only)_
|
|
443
459
|
|
|
444
460
|
```bash
|