content-grade 1.0.17 → 1.0.18
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/bin/content-grade.js +10 -10
- package/package.json +1 -1
package/bin/content-grade.js
CHANGED
|
@@ -71,25 +71,25 @@ function incrementUsage() {
|
|
|
71
71
|
return u.count;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
// Usage tiers — daily limits per plan
|
|
74
|
+
// Usage tiers — daily limits per plan (properly scaled: higher tiers = better $/run)
|
|
75
75
|
const TIER_LIMITS = {
|
|
76
|
-
free: 5, // 5/day
|
|
77
|
-
starter:
|
|
78
|
-
pro: 50, //
|
|
79
|
-
team:
|
|
76
|
+
free: 5, // 5/day — try it out
|
|
77
|
+
starter: 10, // 10/day — $0.030/run
|
|
78
|
+
pro: 50, // 50/day — $0.019/run (best value per run)
|
|
79
|
+
team: 200, // 200/day — $0.013/run (bulk)
|
|
80
80
|
};
|
|
81
81
|
|
|
82
82
|
const UPGRADE_LINKS = {
|
|
83
|
-
free: 'https://buy.stripe.com/
|
|
84
|
-
starter: 'https://buy.stripe.com/
|
|
85
|
-
pro: 'https://buy.stripe.com/
|
|
83
|
+
free: 'https://buy.stripe.com/4gM14p87GeCh9vn9ks8k80a', // Starter $9/mo
|
|
84
|
+
starter: 'https://buy.stripe.com/bJefZjafO2Tz36Z2W48k80b', // Pro $29/mo
|
|
85
|
+
pro: 'https://buy.stripe.com/cNiaEZfA8cu9bDv4088k80c', // Team $79/mo
|
|
86
86
|
};
|
|
87
87
|
|
|
88
88
|
const TIER_NAMES = {
|
|
89
89
|
free: 'Free (5/day)',
|
|
90
|
-
starter: 'Starter — $9/mo (
|
|
90
|
+
starter: 'Starter — $9/mo (10/day)',
|
|
91
91
|
pro: 'Pro — $29/mo (50/day)',
|
|
92
|
-
team: 'Team — $79/mo (
|
|
92
|
+
team: 'Team — $79/mo (200/day)',
|
|
93
93
|
};
|
|
94
94
|
|
|
95
95
|
function getDailyLimit() {
|
package/package.json
CHANGED