@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.
Files changed (3) hide show
  1. package/README.md +11 -8
  2. package/bin/cli.js +1 -1
  3. 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
- > **Pro tip:** Create a free account at [anonymily.com](https://anonymily.com) and claim your endpoint to keep the same URL across sessions and unlock 500 requests / 30-day history retention with a Pro subscription.
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
- ## Account-Based Pro (Recommended)
144
+ ## Upgrading to Pro (₹750/month)
145
145
 
146
- The modern way to get Pro limits is via an **account subscription** at [anonymily.com/upgrade](https://anonymily.com/upgrade). This gives your entire account Pro limits (₹750/month) no per-hook configuration needed.
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. Sign up at [anonymily.com](https://anonymily.com)
150
- 2. Subscribe to Pro at [anonymily.com/upgrade](https://anonymily.com/upgrade)
151
- 3. Open the dashboard, copy your endpoint URL, and claim it to your account
152
- 4. Run the CLI with the same hook ID:
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
- 5. All Pro limits apply automatically — 500 requests, 30-day history
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.0');
23
+ .version('1.1.1');
24
24
 
25
25
  // ---------------------------------------------------------------------------
26
26
  // listen
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anonymilyhq/cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI for Anonymily platform",
5
5
  "type": "module",
6
6
  "bin": {