Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/dist/src/api/profile/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
import { ProfileService } from "./profile.service"; import { UpdateChatReqStatusDto, UpdateMyBioDto, UpdateMyNameDto, UpdateMyPasswordDto, UpdateMyPrivacyDto } from "./dto/update.my.name.dto"; import UpdatePasswordDto from "./dto/update_password_dto"; import { MongoIdDto } from "../../core/common/dto/mongo.id.dto"; import CheckVersionDto from "./dto/check-version.dto"; import { MongoPeerIdDto } from "../../core/common/dto/mongo.peer.id.dto"; import { CreateReportSystemDto } from "../report_system/dto/create-report_system.dto"; export declare class ProfileController { private readonly profileService; constructor(profileService: ProfileService); getMyProfile(req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getConfig(req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getUsersAndSearch(req: any, dto: Object): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getAdminNotification(req: any, dto: Object): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getMyDevice(req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; deleteDevice(req: any, dto: MongoIdDto, password: string): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateMyName(req: any, dto: UpdateMyNameDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateMyPrivacy(req: any, dto: UpdateMyPrivacyDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getMyBlocked(req: any, dto: Object): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateMyBio(req: any, dto: UpdateMyBioDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateMyPassword(req: any, dto: UpdateMyPasswordDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateMyImage(req: any, file?: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getMyChatRequest(req: any, dto: object): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getPeerProfile(req: any, dto: MongoIdDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; sendChatRequest(req: any, dto: MongoIdDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateChatRequest(req: any, dto: MongoIdDto, status: UpdateChatReqStatusDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; deleteFcm(req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; addFcm(pushKey: String, req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateFcm(pushKey: String, req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updateLanguage(lang: String, req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; setVisit(req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; getUserLastSeenAt(req: any, dto: MongoPeerIdDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; updatePassword(dto: UpdatePasswordDto, req: any): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; deleteMyAccount(req: any, password: string): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; checkVersion(req: any, dto: CheckVersionDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; createReport(req: any, dto: CreateReportSystemDto): Promise<{ code: import("../../core/utils/res.helpers").ApiCode; data: any; msg: null; }>; }