@corsair-dev/webvizio 0.1.0 → 0.1.1
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 +32 -0
- package/package.json +9 -3
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @corsair-dev/webvizio
|
|
2
|
+
|
|
3
|
+
Webvizio plugin for Corsair.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @corsair-dev/webvizio
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Endpoints
|
|
12
|
+
|
|
13
|
+
| Operation | Operation ID | Risk | Description |
|
|
14
|
+
|-----------|--------------|------|-------------|
|
|
15
|
+
| `projects.list` | `webvizio.api.projects.list` | `read` | List all available Webvizio projects |
|
|
16
|
+
| `webhooks.list` | `webvizio.api.webhooks.list` | `read` | List all configured Webvizio webhook subscriptions |
|
|
17
|
+
|
|
18
|
+
## Auth
|
|
19
|
+
|
|
20
|
+
Auth: API key. Corsair prompts your tenant for credentials on first use.
|
|
21
|
+
|
|
22
|
+
## Webhooks
|
|
23
|
+
|
|
24
|
+
No webhooks.
|
|
25
|
+
|
|
26
|
+
## Reference
|
|
27
|
+
|
|
28
|
+
Full docs, types, and examples: https://docs.corsair.dev/plugins/webvizio
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corsair-dev/webvizio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Webvizio plugin for Corsair",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,18 +24,24 @@
|
|
|
24
24
|
"tsup": "^8.0.1",
|
|
25
25
|
"typescript": "^5.9.3",
|
|
26
26
|
"zod": "^4.1.13",
|
|
27
|
-
"corsair": "0.1.
|
|
27
|
+
"corsair": "0.1.130"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"corsair",
|
|
31
31
|
"webvizio",
|
|
32
32
|
"plugin"
|
|
33
33
|
],
|
|
34
|
-
"author": "",
|
|
34
|
+
"author": "Corsair (https://corsair.dev)",
|
|
35
35
|
"license": "Apache-2.0",
|
|
36
36
|
"files": [
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/corsairdev/corsair.git",
|
|
42
|
+
"directory": "packages/webvizio"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://docs.corsair.dev/plugins/webvizio",
|
|
39
45
|
"scripts": {
|
|
40
46
|
"build": "rm -rf dist && tsc --build --force && tsup",
|
|
41
47
|
"typecheck": "tsc --noEmit",
|