diff --git a/atmn/src/commands/push/validate.ts b/atmn/src/commands/push/validate.ts index d0473f7..e12a02c 100644 --- a/atmn/src/commands/push/validate.ts +++ b/atmn/src/commands/push/validate.ts @@ -125,7 +125,7 @@ function validatePlanFeature( } // ========== RESET INTERVAL VALIDATION ========== - const validIntervals = ["one_off", "hour", "day", "week", "month", "quarter", "semi_annual", "year"]; + const validIntervals = ["one_off", "week", "month", "quarter", "semi_annual", "year"]; // Validate top-level reset interval if (hasTopLevelReset) { diff --git a/atmn/src/lib/env/keys.ts b/atmn/src/lib/env/keys.ts index 558bbdd..3735f1a 100644 --- a/atmn/src/lib/env/keys.ts +++ b/atmn/src/lib/env/keys.ts @@ -48,7 +48,7 @@ export function getKey(env: AppEnv, cwd?: string): string { if (!key) { throw new Error( - `No ${env} API key found. Run 'atmn auth' to authenticate.`, + `No ${env} API key found. Run 'atmn login' to authenticate.`, ); }