Skip to content

Commit 5f76c43

Browse files
GeneAIclaude
authored andcommitted
fix(website): Add missing Wizard type for generated wizards.ts
The generated wizards.ts file imports from ../types/wizard which was missing, causing Railway build to fail. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent c552f92 commit 5f76c43

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

website/lib/types/wizard.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Wizard type definitions for the website
3+
*/
4+
5+
export interface Wizard {
6+
id: string;
7+
name: string;
8+
description: string;
9+
icon: string;
10+
category: 'software' | 'healthcare' | 'coach' | 'domain';
11+
subcategory: string;
12+
distributions: ('open_source' | 'enterprise' | 'healthcare')[];
13+
empathyLevel: 1 | 2 | 3 | 4 | 5;
14+
redis: 'none' | 'optional' | 'recommended' | 'required';
15+
compliance: string[];
16+
features: string[];
17+
demoReady: boolean;
18+
blogFeatured: boolean;
19+
websiteFeatured: boolean;
20+
}

0 commit comments

Comments
 (0)