import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class MonitorDetectionService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); /** * @returns void * @throws ApiError */ create(): CancelablePromise; /** * @returns void * @throws ApiError */ createFromPotentialDetection(): CancelablePromise; /** * @returns void * @throws ApiError */ removePotentialDetection(): CancelablePromise; /** * @returns void * @throws ApiError */ updateFindingsToVulnerabilities(): CancelablePromise; /** * @returns void * @throws ApiError */ getAllAsmDetails(): CancelablePromise; /** * @returns void * @throws ApiError */ getAsmVulnerabilities(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionsOverLocation(): CancelablePromise; /** * @returns void * @throws ApiError */ getPortExposureStatistics(): CancelablePromise; /** * @returns void * @throws ApiError */ getPortExposureBySubdomain(): CancelablePromise; /** * @returns void * @throws ApiError */ groupDetectionsByFindings(): CancelablePromise; /** * @returns void * @throws ApiError */ getFindingsOverTime(): CancelablePromise; /** * @returns void * @throws ApiError */ getAsmDetectionsBySeverity(): CancelablePromise; /** * @returns void * @throws ApiError */ remove(): CancelablePromise; /** * @returns void * @throws ApiError */ update(): CancelablePromise; /** * @returns void * @throws ApiError */ getById(): CancelablePromise; /** * @returns void * @throws ApiError */ gatherScreenshot(): CancelablePromise; /** * @returns void * @throws ApiError */ getMany(): CancelablePromise; /** * @returns void * @throws ApiError */ getManyMobileApplication(): CancelablePromise; /** * @returns void * @throws ApiError */ getIntel(): CancelablePromise; /** * @returns void * @throws ApiError */ getManySocialMedia(): CancelablePromise; /** * @returns void * @throws ApiError */ canClassify(): CancelablePromise; /** * @returns void * @throws ApiError */ isReclassification(): CancelablePromise; /** * @returns void * @throws ApiError */ submitIntelligentClassificationResponse(data?: { id?: string; classificationResult?: Record; questionResponses?: any[]; sessionDuration?: number; attr?: Record; }): CancelablePromise; /** * @returns void * @throws ApiError */ getDetailedClassificationResponse(): CancelablePromise; /** * @returns void * @throws ApiError */ getClassificationSummary(): CancelablePromise; /** * @returns void * @throws ApiError */ getResponse(): CancelablePromise; /** * @returns void * @throws ApiError */ descriptionUpdate(): CancelablePromise; /** * @returns void * @throws ApiError */ attachFile(): CancelablePromise; /** * @returns void * @throws ApiError */ deleteAttachment(): CancelablePromise; /** * @returns void * @throws ApiError */ updateAttr(requestBody?: { id?: string; attr?: Record; }): CancelablePromise; /** * @returns void * @throws ApiError */ getStatusWise(): CancelablePromise; /** * @returns void * @throws ApiError */ getTypeWise(): CancelablePromise; /** * @returns void * @throws ApiError */ getSeverityWise(): CancelablePromise; /** * @returns void * @throws ApiError */ getThreatScoreWise(): CancelablePromise; /** * @returns void * @throws ApiError */ getSourceWise(): CancelablePromise; /** * @returns void * @throws ApiError */ getDayWise(): CancelablePromise; /** * @returns void * @throws ApiError */ addTag(): CancelablePromise; /** * @returns void * @throws ApiError */ removeTag(): CancelablePromise; /** * @returns void * @throws ApiError */ import(): CancelablePromise; /** * @returns void * @throws ApiError */ comment(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetections(): CancelablePromise; /** * @returns void * @throws ApiError */ getUniqueClassification(): CancelablePromise; /** * @returns void * @throws ApiError */ getCurrentRisk(): CancelablePromise; /** * @returns void * @throws ApiError */ getImportCount(): CancelablePromise; /** * @returns void * @throws ApiError */ hasCountryData(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionsByMobileApplication(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionsBySocialMedia(): CancelablePromise; /** * @returns void * @throws ApiError */ getScoreStatistics(): CancelablePromise; /** * @returns void * @throws ApiError */ getCount(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionByStatus(): CancelablePromise; /** * @returns void * @throws ApiError */ aiOverview(): CancelablePromise; /** * @returns void * @throws ApiError */ aiImpactOverview(): CancelablePromise; /** * @returns void * @throws ApiError */ aiRemediationOverview(): CancelablePromise; /** * @returns void * @throws ApiError */ statusUpdate(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionByDomain(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionByHosting(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionCount(): CancelablePromise; /** * @returns void * @throws ApiError */ patchDomain(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionOrg(): CancelablePromise; /** * @returns void * @throws ApiError */ getDetectionStatistics(): CancelablePromise; /** * @returns void * @throws ApiError */ getAsmDashboardStatistics(): CancelablePromise; /** * @returns void * @throws ApiError */ getAsmStatistics(): CancelablePromise; /** * @returns void * @throws ApiError */ deleteAsmDetections(): CancelablePromise; /** * @returns void * @throws ApiError */ getBrandProtectionDetections(): CancelablePromise; /** * @returns void * @throws ApiError */ getBrandProtectionDetectionsByCategory(): CancelablePromise; /** * @returns void * @throws ApiError */ getBrandProtectionStatusByCount(): CancelablePromise; /** * @returns void * @throws ApiError */ getDashboardStats(): CancelablePromise; /** * @returns void * @throws ApiError */ getGlobalStats(): CancelablePromise; /** * @returns void * @throws ApiError */ getClassificationConfig(): CancelablePromise; /** * @returns void * @throws ApiError */ autoClassify(): CancelablePromise; /** * @returns void * @throws ApiError */ canAutoClassify(): CancelablePromise; /** * @returns void * @throws ApiError */ getAutoClassificationHistory(): CancelablePromise; /** * @returns void * @throws ApiError */ acceptAutoClassification(): CancelablePromise; /** * @returns void * @throws ApiError */ findUnclassifiedDetections(data?: Record): CancelablePromise; /** * @returns void * @throws ApiError */ executeAiPrompt(data?: { prompt?: string; useCache?: boolean; }): CancelablePromise; /** * Get all detections with actionable_by_client status (or custom statuses) * and include the total audit log count per detection. * @returns void * @throws ApiError */ getDetectionsByStatusWithAuditCount(data?: { statuses?: string[]; start?: number; end?: number; }): CancelablePromise; }