@blockyfy/stg-cli 0.4.2 → 0.4.3
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2717,7 +2717,7 @@ function createProxy(opts = {}) {
|
|
|
2717
2717
|
);
|
|
2718
2718
|
const { monthlyMutations } = getTierLimits(tier);
|
|
2719
2719
|
const usage = loadUsage();
|
|
2720
|
-
if (tier === "free" && usage.mutations >= monthlyMutations) {
|
|
2720
|
+
if (!dashboardApiKey && tier === "free" && usage.mutations >= monthlyMutations) {
|
|
2721
2721
|
return c.json(
|
|
2722
2722
|
{
|
|
2723
2723
|
error: {
|