@proggarapsody/bitbottle 1.62.0 → 1.64.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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,6 +91,7 @@ Tokens are intentionally stripped from `hosts.yml` on every save. If you have an
|
|
|
91
91
|
| `pipeline` | `list` `view` `run` _(Cloud only)_ |
|
|
92
92
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
93
93
|
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
94
|
+
| `user` | `view` |
|
|
94
95
|
| `workspace` | `list` `member list` _(Cloud only)_ |
|
|
95
96
|
| `project` | `list WORKSPACE` _(Cloud only)_ |
|
|
96
97
|
| `issue` | `list` `view` `create` `close` `edit` `reopen` `assign` `comment {list\|add\|edit\|delete}` _(Cloud only)_ |
|
|
@@ -439,6 +440,21 @@ bitbottle workspace member list myworkspace --json
|
|
|
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
|