@whop/cli 0.10.0 → 0.11.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.
- package/README.md +21 -6
- package/dist/index.js +2744 -1443
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/skills/whop-ad-campaigns/SKILL.md +1 -0
- package/skills/whop-verifications/SKILL.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whop/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "The Whop CLI — build and manage Whop apps from your terminal. Human and agent friendly.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "25.3.5",
|
|
47
47
|
"fflate": "0.8.2",
|
|
48
|
-
"incur": "github:whopio/incur#
|
|
48
|
+
"incur": "github:whopio/incur#b0550076a7a66790e4d30db38103d8a91602b6cb",
|
|
49
49
|
"tsup": "8.5.0",
|
|
50
50
|
"tsx": "4.19.4",
|
|
51
51
|
"typescript": "5.9.3",
|
|
@@ -19,6 +19,7 @@ Use the Ad Campaigns API to create campaigns, list campaigns for an account, ret
|
|
|
19
19
|
| `whop ad-campaigns get` | Retrieve an Ad Campaign |
|
|
20
20
|
| `whop ad-campaigns update` | Update an Ad Campaign |
|
|
21
21
|
| `whop ad-campaigns pause` | Pause an Ad Campaign |
|
|
22
|
+
| `whop ad-campaigns retry_payment` | Retry a Failed Ad Campaign Payment |
|
|
22
23
|
| `whop ad-campaigns unpause` | Unpause an Ad Campaign |
|
|
23
24
|
|
|
24
25
|
Run `whop ad-campaigns <command> --help` for options, or `whop ad-campaigns <command> --schema` for full argument details.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: whop-verifications
|
|
3
|
-
description:
|
|
3
|
+
description: Legal identity required before payouts and card issuing. Run `whop verifications --help` for usage details.
|
|
4
4
|
requires_bin: whop
|
|
5
5
|
command: whop verifications
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
A Verification represents
|
|
8
|
+
A Verification represents a legal identity for a person or business. Accounts and users complete verification when Whop needs to confirm who they are before enabling payouts or compliance-sensitive workflows.
|
|
9
9
|
|
|
10
10
|
Use the Verifications API to start or resume a hosted verification session, check review status, and submit requested details or documents. If `requested_information` contains items, submit answers with [Update Verification](https://docs.whop.com/api-reference/beta/verifications/update-verification).
|
|
11
11
|
|