@proggarapsody/bitbottle 1.65.0 → 1.67.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 +20 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ Tokens are intentionally stripped from `hosts.yml` on every save. If you have an
|
|
|
92
92
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
93
93
|
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
94
94
|
| `user` | `view` |
|
|
95
|
-
| `workspace` | `list` `member list` _(Cloud only)_ |
|
|
95
|
+
| `workspace` | `list` `member list` `hook list` `hook create` `hook delete` _(Cloud only)_ |
|
|
96
96
|
| `project` | `list WORKSPACE` _(Cloud only)_ |
|
|
97
97
|
| `issue` | `list` `view` `create` `close` `edit` `reopen` `assign` `comment {list\|add\|edit\|delete}` _(Cloud only)_ |
|
|
98
98
|
| `search` | `code QUERY` _(Cloud only)_ |
|
|
@@ -245,6 +245,16 @@ bitbottle pipeline schedule create MYWORKSPACE/my-service \
|
|
|
245
245
|
bitbottle pipeline schedule delete MYWORKSPACE/my-service {uuid}
|
|
246
246
|
```
|
|
247
247
|
|
|
248
|
+
### Pipeline Caches _(Cloud only)_
|
|
249
|
+
|
|
250
|
+
```bash
|
|
251
|
+
# List all pipeline caches for a repository
|
|
252
|
+
bitbottle pipeline cache list MYWORKSPACE/my-service
|
|
253
|
+
|
|
254
|
+
# Delete a cache by UUID
|
|
255
|
+
bitbottle pipeline cache delete MYWORKSPACE/my-service {uuid}
|
|
256
|
+
```
|
|
257
|
+
|
|
248
258
|
### Deployments & Environments _(Cloud only)_
|
|
249
259
|
|
|
250
260
|
```bash
|
|
@@ -445,6 +455,15 @@ bitbottle project list myworkspace --limit 100
|
|
|
445
455
|
bitbottle workspace member list myworkspace
|
|
446
456
|
bitbottle workspace member list # inferred from pinned repo
|
|
447
457
|
bitbottle workspace member list myworkspace --json
|
|
458
|
+
|
|
459
|
+
# Webhooks for a workspace
|
|
460
|
+
bitbottle workspace hook list myworkspace
|
|
461
|
+
bitbottle workspace hook list myworkspace --json
|
|
462
|
+
|
|
463
|
+
bitbottle workspace hook create myworkspace --url https://example.com/hook --events repo:push,pullrequest:created
|
|
464
|
+
bitbottle workspace hook create myworkspace --url https://example.com/hook --events repo:push --events pullrequest:created
|
|
465
|
+
|
|
466
|
+
bitbottle workspace hook delete myworkspace WEBHOOK-UUID
|
|
448
467
|
```
|
|
449
468
|
|
|
450
469
|
All commands surface a typed unsupported-capability error against
|