feat: add profiles session API
This commit is contained in:
29
dist/profiles/profiles.controller.d.ts
vendored
Normal file
29
dist/profiles/profiles.controller.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import { ProfilesService } from './profiles.service';
|
||||
import { CreateProfileDto } from '../shared/dto/profile.dto';
|
||||
export declare class ProfilesController {
|
||||
private readonly profilesService;
|
||||
constructor(profilesService: ProfilesService);
|
||||
findAll(): Promise<{
|
||||
id: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
}[]>;
|
||||
create(dto: CreateProfileDto): Promise<{
|
||||
id: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
isActive: boolean;
|
||||
}>;
|
||||
delete(id: string): Promise<{
|
||||
id: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
isActive: boolean;
|
||||
} | null>;
|
||||
}
|
||||
Reference in New Issue
Block a user