@anonymilyhq/cli 1.1.0 → 1.1.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 +11 -8
- package/bin/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ The Anonymily CLI connects to your live webhook endpoint on `api.anonymily.com`
|
|
|
18
18
|
|
|
19
19
|
**No tunnels. No signup. No account required.** Just one command.
|
|
20
20
|
|
|
21
|
-
> **
|
|
21
|
+
> **Want more?** Upgrade to Pro (₹750/month) to claim persistent hooks and unlock 500 requests + 30-day retention. Visit [anonymily.com/upgrade](https://anonymily.com/upgrade) to subscribe.
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
@@ -141,19 +141,22 @@ Your feedback helps us improve Anonymily. All submissions are anonymous unless y
|
|
|
141
141
|
|
|
142
142
|
---
|
|
143
143
|
|
|
144
|
-
##
|
|
144
|
+
## Upgrading to Pro (₹750/month)
|
|
145
145
|
|
|
146
|
-
|
|
146
|
+
To get Pro limits (500 requests, 30-day retention), you need a **paid Pro subscription** at [anonymily.com/upgrade](https://anonymily.com/upgrade). This is an account-level subscription — all your claimed hooks get Pro limits automatically.
|
|
147
147
|
|
|
148
148
|
**Workflow:**
|
|
149
|
-
1.
|
|
150
|
-
2. Subscribe to Pro at [anonymily.com/upgrade](https://anonymily.com/upgrade)
|
|
151
|
-
3. Open the dashboard,
|
|
152
|
-
4.
|
|
149
|
+
1. Create an account at [anonymily.com/signup](https://anonymily.com/signup) (free)
|
|
150
|
+
2. Subscribe to Pro at [anonymily.com/upgrade](https://anonymily.com/upgrade) (₹750/month)
|
|
151
|
+
3. Open the dashboard, generate or use a custom hook ID
|
|
152
|
+
4. Click "Claim for Pro" to associate the hook with your account
|
|
153
|
+
5. Run the CLI with the same hook ID:
|
|
153
154
|
```bash
|
|
154
155
|
npx @anonymilyhq/cli listen 3000 --id your-claimed-hook
|
|
155
156
|
```
|
|
156
|
-
|
|
157
|
+
6. All Pro limits apply automatically — 500 requests, 30-day history
|
|
158
|
+
|
|
159
|
+
**Note:** Account creation is free, but Pro features require a paid subscription.
|
|
157
160
|
|
|
158
161
|
---
|
|
159
162
|
|
package/bin/cli.js
CHANGED
|
@@ -20,7 +20,7 @@ const API_URL = process.env.ANONYMILY_API_URL || 'https://api.anonymily.com';
|
|
|
20
20
|
program
|
|
21
21
|
.name('anonymily')
|
|
22
22
|
.description('Forward webhooks from Anonymily directly to your local machine.')
|
|
23
|
-
.version('1.1.
|
|
23
|
+
.version('1.1.1');
|
|
24
24
|
|
|
25
25
|
// ---------------------------------------------------------------------------
|
|
26
26
|
// listen
|