sentry 0.22.0 → 0.24.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 +10 -2
- package/dist/index.cjs +2080 -562
- package/dist/index.d.cts +95 -3
- package/package.json +20 -19
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
### Install Script (Recommended)
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
curl
|
|
22
|
+
curl https://cli.sentry.dev/install -fsS | bash
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Homebrew
|
|
@@ -72,10 +72,18 @@ sentry issue plan PROJ-ABC
|
|
|
72
72
|
|---------|-------------|
|
|
73
73
|
| `sentry auth` | Login, logout, check authentication status |
|
|
74
74
|
| `sentry org` | List and view organizations |
|
|
75
|
-
| `sentry project` | List and
|
|
75
|
+
| `sentry project` | List, view, create, and delete projects |
|
|
76
76
|
| `sentry issue` | List, view, explain, and plan issues |
|
|
77
77
|
| `sentry event` | View event details |
|
|
78
|
+
| `sentry trace` | List and view distributed traces |
|
|
79
|
+
| `sentry span` | List and view spans |
|
|
80
|
+
| `sentry log` | List and view logs (with streaming) |
|
|
81
|
+
| `sentry dashboard` | List, view, and create dashboards with widgets |
|
|
82
|
+
| `sentry sourcemap` | Inject debug IDs and upload sourcemaps |
|
|
83
|
+
| `sentry init` | Initialize Sentry in your project |
|
|
84
|
+
| `sentry schema` | Browse the Sentry API schema |
|
|
78
85
|
| `sentry api` | Make direct API requests |
|
|
86
|
+
| `sentry cli` | Upgrade, setup, fix, and send feedback |
|
|
79
87
|
|
|
80
88
|
For detailed documentation, visit [cli.sentry.dev](https://cli.sentry.dev).
|
|
81
89
|
|