@whop/cli 0.14.1 → 0.14.3
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 +3 -3
- package/dist/index.js +22283 -7154
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/whop-accounts/SKILL.md +195 -15
- package/skills/whop-ad-campaigns/SKILL.md +193 -15
- package/skills/whop-ad-groups/SKILL.md +258 -16
- package/skills/whop-ads/SKILL.md +190 -14
- package/skills/whop-api-keys/SKILL.md +113 -13
- package/skills/whop-app-builds/SKILL.md +68 -8
- package/skills/whop-apps/SKILL.md +135 -12
- package/skills/whop-audiences/SKILL.md +92 -8
- package/skills/whop-bounties/SKILL.md +104 -9
- package/skills/whop-bounty-submissions/SKILL.md +82 -9
- package/skills/whop-cards/SKILL.md +122 -12
- package/skills/whop-checkout-configurations/SKILL.md +64 -8
- package/skills/whop-deposits/SKILL.md +13 -5
- package/skills/whop-disputes/SKILL.md +86 -9
- package/skills/whop-events/SKILL.md +90 -8
- package/skills/whop-exports/SKILL.md +331 -7
- package/skills/whop-ledgers/SKILL.md +38 -6
- package/skills/whop-media/SKILL.md +28 -7
- package/skills/whop-members/SKILL.md +51 -6
- package/skills/whop-memberships/SKILL.md +137 -13
- package/skills/whop-notifications/SKILL.md +91 -12
- package/skills/whop-partners/SKILL.md +102 -12
- package/skills/whop-payments/SKILL.md +40 -0
- package/skills/whop-payouts/SKILL.md +130 -9
- package/skills/whop-people/SKILL.md +50 -6
- package/skills/whop-permissions/SKILL.md +8 -5
- package/skills/whop-plans/SKILL.md +152 -12
- package/skills/whop-products/SKILL.md +141 -13
- package/skills/whop-resolution-center-cases/SKILL.md +222 -17
- package/skills/whop-setup-intents/SKILL.md +20 -0
- package/skills/whop-shipments/SKILL.md +66 -8
- package/skills/whop-social-accounts/SKILL.md +112 -11
- package/skills/whop-stats/SKILL.md +50 -6
- package/skills/whop-swaps/SKILL.md +63 -8
- package/skills/whop-team-members/SKILL.md +80 -9
- package/skills/whop-transfers/SKILL.md +67 -8
- package/skills/whop-users/SKILL.md +295 -18
- package/skills/whop-verifications/SKILL.md +51 -9
package/README.md
CHANGED
|
@@ -55,12 +55,12 @@ whop --help # all commands
|
|
|
55
55
|
whop products list # what you're selling
|
|
56
56
|
whop plans create --help # options for any command
|
|
57
57
|
whop stats list # your numbers
|
|
58
|
-
whop accounts get --account_id
|
|
58
|
+
whop accounts get --account_id jordan # retrieve a business by route
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
Every command takes `--format json` for structured output, or `--format jsonl` to stream events.
|
|
62
62
|
|
|
63
|
-
Account-scoped commands use the selected business by default. Pass another business with `--account_id`.
|
|
63
|
+
Account-scoped commands use the selected business by default. Pass another business's `biz_` ID or public route with `--account_id`.
|
|
64
64
|
|
|
65
65
|
In a terminal, commands prompt for missing inputs. Agents and scripts (non-TTY) get a structured validation error instead, so nothing hangs.
|
|
66
66
|
|
|
@@ -166,7 +166,7 @@ whop skills add # generate agent skills (per-resource playbooks)
|
|
|
166
166
|
|
|
167
167
|
For OAuth, run `whop login --method oauth --format jsonl` in the background with stdout redirected to a file (pipes like `| head` can buffer past the URL). The first line carries an `authorizationUrl`; open it in the user's browser, unedited. Once the process exits, you're logged in.
|
|
168
168
|
|
|
169
|
-
For unattended automation, set `WHOP_API_KEY` (create one under **Developer → API keys**).
|
|
169
|
+
For unattended automation, set `WHOP_API_KEY` (create one under **Developer → API keys**). For API commands, it takes precedence over any saved CLI profile for that invocation.
|
|
170
170
|
|
|
171
171
|
## Authentication
|
|
172
172
|
|