@whop/cli 0.14.3 → 0.16.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.
Files changed (36) hide show
  1. package/README.md +2 -2
  2. package/dist/index.js +33549 -21195
  3. package/dist/index.js.map +1 -1
  4. package/dist/vite.d.ts +1 -1
  5. package/dist/vite.js +37 -1
  6. package/dist/vite.js.map +1 -1
  7. package/package.json +1 -1
  8. package/skills/whop-accounts/SKILL.md +38 -16
  9. package/skills/whop-ad-groups/SKILL.md +8 -8
  10. package/skills/whop-api-keys/SKILL.md +2 -0
  11. package/skills/whop-apps/SKILL.md +19 -4
  12. package/skills/whop-audiences/SKILL.md +3 -3
  13. package/skills/whop-bounties/SKILL.md +28 -0
  14. package/skills/whop-bounty-submissions/SKILL.md +3 -3
  15. package/skills/whop-cards/SKILL.md +2 -2
  16. package/skills/whop-dispute-alerts/SKILL.md +42 -0
  17. package/skills/whop-disputes/SKILL.md +2 -2
  18. package/skills/whop-events/SKILL.md +1 -1
  19. package/skills/whop-exports/SKILL.md +38 -3
  20. package/skills/whop-ledgers/SKILL.md +1 -0
  21. package/skills/whop-memberships/SKILL.md +18 -1
  22. package/skills/whop-notifications/SKILL.md +1 -1
  23. package/skills/whop-payment-method-domains/SKILL.md +93 -0
  24. package/skills/whop-payments/SKILL.md +1 -1
  25. package/skills/whop-payouts/SKILL.md +36 -11
  26. package/skills/whop-people/SKILL.md +1 -1
  27. package/skills/whop-plans/SKILL.md +2 -0
  28. package/skills/whop-products/SKILL.md +1 -0
  29. package/skills/whop-recommended-actions/SKILL.md +59 -0
  30. package/skills/whop-setup-intents/SKILL.md +20 -0
  31. package/skills/whop-social-accounts/SKILL.md +2 -2
  32. package/skills/whop-stats/SKILL.md +2 -0
  33. package/skills/whop-swaps/SKILL.md +2 -1
  34. package/skills/whop-transfers/SKILL.md +2 -2
  35. package/skills/whop-users/SKILL.md +3 -0
  36. package/skills/whop-verifications/SKILL.md +2 -2
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 jordan # retrieve a business by route
58
+ whop accounts get 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's `biz_` ID or public route with `--account_id`.
63
+ Commands that act on one account take the business's `biz_` ID or public route positionally. Account-scoped commands use the selected business by default; pass `--account_id` to choose a different scope. Account preferences and reserves remain account-scoped.
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