fix: add gated field to project repository create type signature
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -12,7 +12,7 @@ export interface IProjectRepository {
|
|||||||
findAll(ownerId?: string): Promise<ProjectWithRelations[]>;
|
findAll(ownerId?: string): Promise<ProjectWithRelations[]>;
|
||||||
findById(id: string): Promise<ProjectWithRelations | null>;
|
findById(id: string): Promise<ProjectWithRelations | null>;
|
||||||
findByName(name: string): Promise<ProjectWithRelations | null>;
|
findByName(name: string): Promise<ProjectWithRelations | null>;
|
||||||
create(data: { name: string; description: string; prompt?: string; ownerId: string; proxyMode: string; llmProvider?: string; llmModel?: string }): Promise<ProjectWithRelations>;
|
create(data: { name: string; description: string; prompt?: string; ownerId: string; proxyMode: string; gated?: boolean; llmProvider?: string; llmModel?: string }): Promise<ProjectWithRelations>;
|
||||||
update(id: string, data: Record<string, unknown>): Promise<ProjectWithRelations>;
|
update(id: string, data: Record<string, unknown>): Promise<ProjectWithRelations>;
|
||||||
delete(id: string): Promise<void>;
|
delete(id: string): Promise<void>;
|
||||||
setServers(projectId: string, serverIds: string[]): Promise<void>;
|
setServers(projectId: string, serverIds: string[]): Promise<void>;
|
||||||
@@ -36,7 +36,7 @@ export class ProjectRepository implements IProjectRepository {
|
|||||||
return this.prisma.project.findUnique({ where: { name }, include: PROJECT_INCLUDE }) as unknown as Promise<ProjectWithRelations | null>;
|
return this.prisma.project.findUnique({ where: { name }, include: PROJECT_INCLUDE }) as unknown as Promise<ProjectWithRelations | null>;
|
||||||
}
|
}
|
||||||
|
|
||||||
async create(data: { name: string; description: string; prompt?: string; ownerId: string; proxyMode: string; llmProvider?: string; llmModel?: string }): Promise<ProjectWithRelations> {
|
async create(data: { name: string; description: string; prompt?: string; ownerId: string; proxyMode: string; gated?: boolean; llmProvider?: string; llmModel?: string }): Promise<ProjectWithRelations> {
|
||||||
const createData: Record<string, unknown> = {
|
const createData: Record<string, unknown> = {
|
||||||
name: data.name,
|
name: data.name,
|
||||||
description: data.description,
|
description: data.description,
|
||||||
@@ -44,6 +44,7 @@ export class ProjectRepository implements IProjectRepository {
|
|||||||
proxyMode: data.proxyMode,
|
proxyMode: data.proxyMode,
|
||||||
};
|
};
|
||||||
if (data.prompt !== undefined) createData['prompt'] = data.prompt;
|
if (data.prompt !== undefined) createData['prompt'] = data.prompt;
|
||||||
|
if (data.gated !== undefined) createData['gated'] = data.gated;
|
||||||
if (data.llmProvider !== undefined) createData['llmProvider'] = data.llmProvider;
|
if (data.llmProvider !== undefined) createData['llmProvider'] = data.llmProvider;
|
||||||
if (data.llmModel !== undefined) createData['llmModel'] = data.llmModel;
|
if (data.llmModel !== undefined) createData['llmModel'] = data.llmModel;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user