Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion atmn/src/commands/push/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion atmn/src/lib/env/keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.`,
);
}

Expand Down