@whop/cli 0.13.1 → 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/README.md +18 -0
- package/dist/index.js +16291 -5630
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/skills/whop-accounts/SKILL.md +1 -1
- package/skills/whop-api-keys/SKILL.md +2 -2
- package/skills/whop-audiences/SKILL.md +1 -0
- package/skills/whop-cards/SKILL.md +2 -0
- package/skills/whop-disputes/SKILL.md +22 -0
- package/skills/whop-events/SKILL.md +5 -1
- package/skills/whop-exports/SKILL.md +20 -0
- package/skills/whop-members/SKILL.md +19 -0
- package/skills/whop-memberships/SKILL.md +24 -0
- package/skills/whop-notifications/SKILL.md +25 -0
- package/skills/whop-permissions/SKILL.md +18 -0
- package/skills/whop-products/SKILL.md +2 -0
- package/skills/whop-resolution-center-cases/SKILL.md +28 -0
- package/skills/whop-shipments/SKILL.md +21 -0
- package/skills/whop-transfers/SKILL.md +1 -0
- package/skills/whop-users/SKILL.md +5 -0
package/README.md
CHANGED
|
@@ -101,6 +101,24 @@ whop stats list # financial, audience, and t
|
|
|
101
101
|
|
|
102
102
|
Money moves through the same surface: payouts, transfers, deposits, swaps, and cards. Payouts and card issuing require identity verification (`whop verifications`). Steps that need a browser, like KYC, show up as a link to open.
|
|
103
103
|
|
|
104
|
+
## Serve the customers you have
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
whop members list --access_level customer # one row per buyer
|
|
108
|
+
whop memberships cancel mem_xxx --reason "moved" # also pause, resume, extend
|
|
109
|
+
whop shipments create --payment_id pay_xxx --tracking_number 1Z999
|
|
110
|
+
whop disputes list # chargebacks, with evidence and outcomes
|
|
111
|
+
whop resolution-center-cases reply reso_xxx --help # answer a case before it escalates
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## Export and notify
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
whop exports create --resource receipts # then poll until download_url is set
|
|
118
|
+
whop exports get exprt_xxx
|
|
119
|
+
whop notifications create --experience_id exp_xxx --title "New drop" --content "Live now"
|
|
120
|
+
```
|
|
121
|
+
|
|
104
122
|
## Run ads
|
|
105
123
|
|
|
106
124
|
Generate a creative, then create the campaign, ad group, and ad in one command. Structured flags take JSON strings:
|