@proggarapsody/bitbottle 1.60.0 → 1.62.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 +7 -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,7 @@ 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
|
-
| `workspace` | `list` _(Cloud only)_ |
|
|
94
|
+
| `workspace` | `list` `member list` _(Cloud only)_ |
|
|
100
95
|
| `project` | `list WORKSPACE` _(Cloud only)_ |
|
|
101
96
|
| `issue` | `list` `view` `create` `close` `edit` `reopen` `assign` `comment {list\|add\|edit\|delete}` _(Cloud only)_ |
|
|
102
97
|
| `search` | `code QUERY` _(Cloud only)_ |
|
|
@@ -434,9 +429,14 @@ bitbottle workspace list --json slug,name --jq '.[].slug'
|
|
|
434
429
|
# Projects within a workspace
|
|
435
430
|
bitbottle project list myworkspace
|
|
436
431
|
bitbottle project list myworkspace --limit 100
|
|
432
|
+
|
|
433
|
+
# Members of a workspace
|
|
434
|
+
bitbottle workspace member list myworkspace
|
|
435
|
+
bitbottle workspace member list # inferred from pinned repo
|
|
436
|
+
bitbottle workspace member list myworkspace --json
|
|
437
437
|
```
|
|
438
438
|
|
|
439
|
-
|
|
439
|
+
All commands surface a typed unsupported-capability error against
|
|
440
440
|
Bitbucket Server / Data Center hosts (workspaces are a Cloud concept).
|
|
441
441
|
|
|
442
442
|
### Search _(Cloud only)_
|