@whop/cli 0.14.0 → 0.14.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/dist/index.js +1746 -152
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/skills/whop-api-keys/SKILL.md +1 -1
- package/skills/whop-cards/SKILL.md +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whop/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "The Whop CLI — build and manage Whop apps from your terminal. Human and agent friendly.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "25.3.5",
|
|
46
46
|
"fflate": "0.8.2",
|
|
47
|
-
"incur": "github:whopio/incur#
|
|
47
|
+
"incur": "github:whopio/incur#6962ec46a0fbc5d070df5e8cd4c8cf09efa91bdc",
|
|
48
48
|
"tsup": "8.5.0",
|
|
49
49
|
"tsx": "4.19.4",
|
|
50
50
|
"typescript": "5.9.3",
|
|
@@ -7,7 +7,7 @@ command: whop api-keys
|
|
|
7
7
|
|
|
8
8
|
An API Key is a programmatic credential owned by an account or app. Each key carries its own permissions policy — explicit permission statements or an inherited system role — and can be restricted with an expiration date and an IP allowlist.
|
|
9
9
|
|
|
10
|
-
Use the API Keys API to list
|
|
10
|
+
Use the API Keys API to list an account or app's keys, create a key (the full secret is returned once, on creation), inspect a key's effective grants, update its name or restrictions, rotate its secret, and revoke it. These endpoints require a user session — they cannot be called with an API key.
|
|
11
11
|
|
|
12
12
|
## Commands
|
|
13
13
|
|
|
@@ -13,6 +13,8 @@ Use the Cards API to issue cards, list cards for an account or user, and retriev
|
|
|
13
13
|
|
|
14
14
|
| Command | Description |
|
|
15
15
|
|---------|-------------|
|
|
16
|
+
| `whop cards transactions` | List Card Transactions |
|
|
17
|
+
| `whop cards get-transaction` | Retrieve Card Transaction |
|
|
16
18
|
| `whop cards list` | List Cards |
|
|
17
19
|
| `whop cards create` | Create Card |
|
|
18
20
|
| `whop cards get` | Retrieve Card |
|