staticx 0.1.5 → 0.1.6

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 CHANGED
@@ -66,10 +66,12 @@ Use these when you want the same contract that the dashboard, CLI, and agents sh
66
66
 
67
67
  StaticX enforces the same limits through the dashboard, API, CLI, MCP, URL imports, and hosted forms runtime.
68
68
 
69
- | Plan | Sites | Storage | Max upload | Form entries |
70
- | --- | ---: | ---: | ---: | ---: |
71
- | Free | 1 | 500 MB | 500 MB | 10,000 |
72
- | Unlimited | Unlimited | Unlimited | 50 GB | Unlimited |
69
+ | Plan | Sites | Storage | Max upload | Form entries | Team seats | Rollback history |
70
+ | --- | ---: | ---: | ---: | ---: | ---: | ---: |
71
+ | Free | 1 | 500 MB | 500 MB | 1,000 | 1 | Last 5 versions |
72
+ | Plus | 15 | 10 GB | 50 GB | 20,000 | 5 | Last 10 versions |
73
+ | Pro | 100 | 20 GB | 50 GB | 100,000 | 10 | Last 50 versions |
74
+ | Agency | Custom | Custom | 50 GB | Custom | Custom | Custom |
73
75
 
74
76
  If a command receives `PLAN_QUOTA_EXCEEDED`, stop and return the exact message. Clean up files/form entries or upgrade before retrying.
75
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "staticx",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Public CLI for STATICX using token-authenticated /api/v1 routes.",
5
5
  "type": "module",
6
6
  "publishConfig": {
package/src/output.js CHANGED
@@ -112,7 +112,7 @@ export function printCliGuide() {
112
112
  console.log('');
113
113
  console.log('Token scopes: use Site tokens for one-site deploys, Workspace tokens for client workspaces, and Global tokens only for broad operator workflows.');
114
114
  console.log('Build rule: deploy folders must include index.html or index.htm and 404.html at the root.');
115
- console.log('Plan limits: Free includes 1 site, 500 MB storage, 500 MB uploads, and 10,000 form entries. Unlimited includes 50 GB uploads with unlimited sites, storage, and form entries.');
115
+ console.log('Plan limits: Free includes 1 site, 500 MB storage, 500 MB uploads, 1,000 form entries, 1 seat, and 5 rollback versions. Plus and Pro raise capacity. Agency uses custom capacity.');
116
116
  console.log('Quota rule: stop on PLAN_QUOTA_EXCEEDED and return the exact API message before retrying.');
117
117
  }
118
118
 
@@ -195,8 +195,10 @@ export function cliGuideJson() {
195
195
  build_rule: 'Deploy folders must include index.html or index.htm and 404.html at the root.',
196
196
  token_scopes: 'Use Site tokens for one-site deploys, Workspace tokens for client workspaces, and Global tokens only for broad operator workflows.',
197
197
  plan_limits: {
198
- free: '1 site, 500 MB storage, 500 MB max upload, 10,000 form entries.',
199
- unlimited: 'Unlimited sites, unlimited storage, 50 GB max upload, unlimited form entries.',
198
+ free: '1 site, 500 MB storage, 500 MB max upload, 1,000 form entries, 1 team seat, last 5 rollback versions.',
199
+ plus: '15 sites, 10 GB storage, 50 GB max upload, 20,000 form entries, 5 team seats, last 10 rollback versions.',
200
+ pro: '100 sites, 20 GB storage, 50 GB max upload, 100,000 form entries, 10 team seats, last 50 rollback versions.',
201
+ agency: 'Custom sites, storage, form entries, seats, and rollback history, with 50 GB max upload.',
200
202
  },
201
203
  quota_rule: 'Stop on PLAN_QUOTA_EXCEEDED and return the exact API message.',
202
204
  };