@regacy-innovation/shared-services
Version:
Shared services for NestJS microservices
27 lines • 630 B
TypeScript
export declare class IdeaOwner {
id: string;
email: string;
firstName: string;
lastName: string;
role: string;
category: string;
jobTitle: string;
profileImage: string | null;
clientId: string | null;
createdAt: string;
updatedAt: string;
isGoogleAuth: boolean;
client: string | null;
}
export declare class GenerateThemeDto {
profile: string;
ideaOwner: IdeaOwner;
client: string;
division: string;
iHave: string;
input: string;
industry?: string;
customerSegment?: string;
sector?: string;
}
//# sourceMappingURL=generate-theme.dto.d.ts.map