Skip to content

Commit 2c4713b

Browse files
committed
feat: add fullstack chat mode to schema and types
1 parent 8c29dc9 commit 2c4713b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/ipc/ipc_types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export interface CreateAppParams {
5050
name: string;
5151
selectedTemplateId?: string;
5252
selectedBackendFramework?: string | null;
53+
isFullStack?: boolean;
5354
}
5455

5556
export interface CreateMissingFolderParams {

src/lib/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export type RuntimeMode = z.infer<typeof RuntimeModeSchema>;
128128
export const RuntimeMode2Schema = z.enum(["host", "docker"]);
129129
export type RuntimeMode2 = z.infer<typeof RuntimeMode2Schema>;
130130

131-
export const ChatModeSchema = z.enum(["build", "ask", "backend"]);
131+
export const ChatModeSchema = z.enum(["build", "ask", "backend", "fullstack"]);
132132
export type ChatMode = z.infer<typeof ChatModeSchema>;
133133

134134
export const GitHubSecretsSchema = z.object({

0 commit comments

Comments
 (0)